├── .gitignore ├── README.md ├── app ├── (routes) │ ├── details │ │ ├── [businessId] │ │ │ └── page.jsx │ │ └── _components │ │ │ ├── BookingSection.jsx │ │ │ ├── BusinessDescription.jsx │ │ │ ├── BusinessInfo.jsx │ │ │ └── SuggestedBusinessList.jsx │ ├── mybooking │ │ ├── _component │ │ │ └── BookingHistoryList.jsx │ │ └── page.jsx │ └── search │ │ ├── [category] │ │ └── page.jsx │ │ ├── _components │ │ └── CategorySideBar.jsx │ │ └── layout.jsx ├── _components │ ├── BusinessList.jsx │ ├── CategoryList.jsx │ ├── Header.jsx │ └── Hero.jsx ├── _services │ └── GlobalApi.js ├── api │ └── auth │ │ └── [...nextauth] │ │ └── route.js ├── favicon.ico ├── globals.css ├── layout.js ├── page.js └── provider.js ├── components.json ├── components └── ui │ ├── alert-dialog.jsx │ ├── button.jsx │ ├── calendar.jsx │ ├── dropdown-menu.jsx │ ├── input.jsx │ ├── sheet.jsx │ ├── sonner.jsx │ └── tabs.jsx ├── jsconfig.json ├── lib └── utils.js ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── logo.svg ├── next.svg └── vercel.svg └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/README.md -------------------------------------------------------------------------------- /app/(routes)/details/[businessId]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/details/[businessId]/page.jsx -------------------------------------------------------------------------------- /app/(routes)/details/_components/BookingSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/details/_components/BookingSection.jsx -------------------------------------------------------------------------------- /app/(routes)/details/_components/BusinessDescription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/details/_components/BusinessDescription.jsx -------------------------------------------------------------------------------- /app/(routes)/details/_components/BusinessInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/details/_components/BusinessInfo.jsx -------------------------------------------------------------------------------- /app/(routes)/details/_components/SuggestedBusinessList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/details/_components/SuggestedBusinessList.jsx -------------------------------------------------------------------------------- /app/(routes)/mybooking/_component/BookingHistoryList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/mybooking/_component/BookingHistoryList.jsx -------------------------------------------------------------------------------- /app/(routes)/mybooking/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/mybooking/page.jsx -------------------------------------------------------------------------------- /app/(routes)/search/[category]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/search/[category]/page.jsx -------------------------------------------------------------------------------- /app/(routes)/search/_components/CategorySideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/search/_components/CategorySideBar.jsx -------------------------------------------------------------------------------- /app/(routes)/search/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/(routes)/search/layout.jsx -------------------------------------------------------------------------------- /app/_components/BusinessList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/_components/BusinessList.jsx -------------------------------------------------------------------------------- /app/_components/CategoryList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/_components/CategoryList.jsx -------------------------------------------------------------------------------- /app/_components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/_components/Header.jsx -------------------------------------------------------------------------------- /app/_components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/_components/Hero.jsx -------------------------------------------------------------------------------- /app/_services/GlobalApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/_services/GlobalApi.js -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/api/auth/[...nextauth]/route.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/page.js -------------------------------------------------------------------------------- /app/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/app/provider.js -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/alert-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/alert-dialog.jsx -------------------------------------------------------------------------------- /components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/button.jsx -------------------------------------------------------------------------------- /components/ui/calendar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/calendar.jsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/dropdown-menu.jsx -------------------------------------------------------------------------------- /components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/input.jsx -------------------------------------------------------------------------------- /components/ui/sheet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/sheet.jsx -------------------------------------------------------------------------------- /components/ui/sonner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/sonner.jsx -------------------------------------------------------------------------------- /components/ui/tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/components/ui/tabs.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/lib/utils.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrs301/home-service-app-web/HEAD/tailwind.config.js --------------------------------------------------------------------------------