├── .env ├── .firebase └── hosting.b3V0.cache ├── .firebaserc ├── .gitignore ├── README.md ├── Shared ├── Data.js └── GlobalApi.js ├── app ├── Login │ └── page.js ├── Provider.js ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.js │ └── google-place │ │ └── route.js ├── favicon.ico ├── globals.css ├── layout.js └── page.js ├── components ├── HeaderNavBar.js ├── Home │ ├── BusinessItem.js │ ├── BusinessList.js │ ├── CategoryList.js │ ├── GoogleMapView.js │ ├── Markers.js │ ├── RangeSelect.js │ └── SelectRating.js └── SkeltonLoading.js ├── context ├── SelectedBusinessContext.js └── UserLocationContext.js ├── firebase.json ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── bento.png ├── circle.png ├── hamburger.png ├── logo.png ├── masala-dosa.png ├── next.svg ├── noodles.png ├── pizza.png ├── placeholder.jpeg ├── ramen.png ├── taco.png ├── user-location.png └── vercel.svg └── tailwind.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/.env -------------------------------------------------------------------------------- /.firebase/hosting.b3V0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/.firebase/hosting.b3V0.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/Shared/Data.js -------------------------------------------------------------------------------- /Shared/GlobalApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/Shared/GlobalApi.js -------------------------------------------------------------------------------- /app/Login/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/Login/page.js -------------------------------------------------------------------------------- /app/Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/Provider.js -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/api/auth/[...nextauth]/route.js -------------------------------------------------------------------------------- /app/api/google-place/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/api/google-place/route.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/app/page.js -------------------------------------------------------------------------------- /components/HeaderNavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/HeaderNavBar.js -------------------------------------------------------------------------------- /components/Home/BusinessItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/BusinessItem.js -------------------------------------------------------------------------------- /components/Home/BusinessList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/BusinessList.js -------------------------------------------------------------------------------- /components/Home/CategoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/CategoryList.js -------------------------------------------------------------------------------- /components/Home/GoogleMapView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/GoogleMapView.js -------------------------------------------------------------------------------- /components/Home/Markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/Markers.js -------------------------------------------------------------------------------- /components/Home/RangeSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/RangeSelect.js -------------------------------------------------------------------------------- /components/Home/SelectRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/Home/SelectRating.js -------------------------------------------------------------------------------- /components/SkeltonLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/components/SkeltonLoading.js -------------------------------------------------------------------------------- /context/SelectedBusinessContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/context/SelectedBusinessContext.js -------------------------------------------------------------------------------- /context/UserLocationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/context/UserLocationContext.js -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/firebase.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/bento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/bento.png -------------------------------------------------------------------------------- /public/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/circle.png -------------------------------------------------------------------------------- /public/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/hamburger.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/masala-dosa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/masala-dosa.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/noodles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/noodles.png -------------------------------------------------------------------------------- /public/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/pizza.png -------------------------------------------------------------------------------- /public/placeholder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/placeholder.jpeg -------------------------------------------------------------------------------- /public/ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/ramen.png -------------------------------------------------------------------------------- /public/taco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/taco.png -------------------------------------------------------------------------------- /public/user-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/user-location.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/restaurant-finder-nextjs/HEAD/tailwind.config.js --------------------------------------------------------------------------------