├── .DS_Store ├── README.md ├── client ├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.png │ └── rooms.json ├── src │ ├── assets │ │ └── images │ │ │ ├── logo.png │ │ │ └── placeholder.jpg │ ├── components │ │ ├── Button │ │ │ └── Button.jsx │ │ └── Shared │ │ │ ├── Container.jsx │ │ │ ├── EmptyState.jsx │ │ │ ├── Footer │ │ │ └── Footer.jsx │ │ │ ├── Loader.jsx │ │ │ └── Navbar │ │ │ ├── MenuDropdown.jsx │ │ │ └── Navbar.jsx │ ├── firebase │ │ └── firebase.config.js │ ├── hooks │ │ └── useAuth.js │ ├── index.css │ ├── layouts │ │ └── Main.jsx │ ├── main.jsx │ ├── pages │ │ ├── ErrorPage.jsx │ │ ├── Home │ │ │ └── Home.jsx │ │ ├── Login │ │ │ └── Login.jsx │ │ └── SignUp │ │ │ └── SignUp.jsx │ ├── providers │ │ └── AuthProvider.jsx │ └── routes │ │ └── Routes.jsx ├── tailwind.config.js └── vite.config.js └── server ├── .gitignore ├── index.js ├── package-lock.json ├── package.json └── vercel.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/README.md -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/.eslintrc.cjs -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/public/favicon.png -------------------------------------------------------------------------------- /client/public/rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/public/rooms.json -------------------------------------------------------------------------------- /client/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/assets/images/logo.png -------------------------------------------------------------------------------- /client/src/assets/images/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/assets/images/placeholder.jpg -------------------------------------------------------------------------------- /client/src/components/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Button/Button.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/Container.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/EmptyState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/EmptyState.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/Footer/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/Loader.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/Navbar/MenuDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/Navbar/MenuDropdown.jsx -------------------------------------------------------------------------------- /client/src/components/Shared/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/components/Shared/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /client/src/firebase/firebase.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/firebase/firebase.config.js -------------------------------------------------------------------------------- /client/src/hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/hooks/useAuth.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/layouts/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/layouts/Main.jsx -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/pages/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/pages/ErrorPage.jsx -------------------------------------------------------------------------------- /client/src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /client/src/pages/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/pages/Login/Login.jsx -------------------------------------------------------------------------------- /client/src/pages/SignUp/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/pages/SignUp/SignUp.jsx -------------------------------------------------------------------------------- /client/src/providers/AuthProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/providers/AuthProvider.jsx -------------------------------------------------------------------------------- /client/src/routes/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/src/routes/Routes.jsx -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/client/vite.config.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/server/package.json -------------------------------------------------------------------------------- /server/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilahmedatik/stayVista-starter-template/HEAD/server/vercel.json --------------------------------------------------------------------------------