├── README.md ├── components ├── DashboardMap.js ├── Image.js ├── Map.js ├── NavBar.js └── Review.js ├── images └── airbnb-logo.png ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js ├── index.js └── property │ └── [slug].js ├── public ├── favicon.ico └── vercel.svg ├── sanity.js ├── styles └── globals.css └── utils.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/README.md -------------------------------------------------------------------------------- /components/DashboardMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/components/DashboardMap.js -------------------------------------------------------------------------------- /components/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/components/Image.js -------------------------------------------------------------------------------- /components/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/components/Map.js -------------------------------------------------------------------------------- /components/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/components/NavBar.js -------------------------------------------------------------------------------- /components/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/components/Review.js -------------------------------------------------------------------------------- /images/airbnb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/images/airbnb-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/property/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/pages/property/[slug].js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/sanity.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/styles/globals.css -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubowania/airbnb-sanity-frontend/HEAD/utils.js --------------------------------------------------------------------------------