├── LICENSE ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.jsx ├── components │ ├── About.jsx │ ├── DashBoard.jsx │ ├── Home.jsx │ ├── HostLayout.jsx │ ├── Income.jsx │ ├── NavBar.jsx │ ├── Reviews.jsx │ ├── Vans.jsx │ ├── VansDes.jsx │ ├── aboutimg.jpg │ ├── back-arrow.png │ └── introimg.jpg ├── index.css ├── main.jsx └── server.js ├── tailwind.config.js └── vite.config.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | see here 👉 https://vanlife-harshbailurkar.netlify.app 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/About.jsx -------------------------------------------------------------------------------- /src/components/DashBoard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/DashBoard.jsx -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/Home.jsx -------------------------------------------------------------------------------- /src/components/HostLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/HostLayout.jsx -------------------------------------------------------------------------------- /src/components/Income.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/Income.jsx -------------------------------------------------------------------------------- /src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/NavBar.jsx -------------------------------------------------------------------------------- /src/components/Reviews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/Reviews.jsx -------------------------------------------------------------------------------- /src/components/Vans.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/Vans.jsx -------------------------------------------------------------------------------- /src/components/VansDes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/VansDes.jsx -------------------------------------------------------------------------------- /src/components/aboutimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/aboutimg.jpg -------------------------------------------------------------------------------- /src/components/back-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/back-arrow.png -------------------------------------------------------------------------------- /src/components/introimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/components/introimg.jpg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/src/server.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/React-Vanlife-Clone/HEAD/vite.config.js --------------------------------------------------------------------------------