├── .gitignore ├── README.md ├── data.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── hero.jpg ├── hero2.jpg ├── hero3.jpg ├── logo.png ├── room.jpg ├── room2.jpg ├── room3.jpg └── room4.jpg ├── components ├── Footer.jsx ├── Google.jsx └── Header.jsx ├── index.css ├── index.js ├── pages ├── About.jsx ├── Booking.jsx ├── Comp.jsx ├── Contact.jsx ├── Final.jsx ├── Home.jsx ├── Login.jsx ├── Rooms.jsx └── Test.jsx └── styles ├── About.css ├── Booking.css ├── Comp.css ├── Contact.css ├── Footer.css ├── Header.css ├── Home.css ├── Login.css ├── Rooms.css └── try.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/data.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/hero.jpg -------------------------------------------------------------------------------- /src/assets/hero2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/hero2.jpg -------------------------------------------------------------------------------- /src/assets/hero3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/hero3.jpg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/room.jpg -------------------------------------------------------------------------------- /src/assets/room2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/room2.jpg -------------------------------------------------------------------------------- /src/assets/room3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/room3.jpg -------------------------------------------------------------------------------- /src/assets/room4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/assets/room4.jpg -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Google.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/components/Google.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/About.jsx -------------------------------------------------------------------------------- /src/pages/Booking.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Booking.jsx -------------------------------------------------------------------------------- /src/pages/Comp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Comp.jsx -------------------------------------------------------------------------------- /src/pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Contact.jsx -------------------------------------------------------------------------------- /src/pages/Final.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Final.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Login.jsx -------------------------------------------------------------------------------- /src/pages/Rooms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Rooms.jsx -------------------------------------------------------------------------------- /src/pages/Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/pages/Test.jsx -------------------------------------------------------------------------------- /src/styles/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/About.css -------------------------------------------------------------------------------- /src/styles/Booking.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Booking.css -------------------------------------------------------------------------------- /src/styles/Comp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Comp.css -------------------------------------------------------------------------------- /src/styles/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Contact.css -------------------------------------------------------------------------------- /src/styles/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Footer.css -------------------------------------------------------------------------------- /src/styles/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Header.css -------------------------------------------------------------------------------- /src/styles/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Home.css -------------------------------------------------------------------------------- /src/styles/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Login.css -------------------------------------------------------------------------------- /src/styles/Rooms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/Rooms.css -------------------------------------------------------------------------------- /src/styles/try.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/hotel-temp-new-1/HEAD/src/styles/try.css --------------------------------------------------------------------------------