├── .gitignore ├── index.html ├── package.json ├── src ├── App.jsx ├── components │ └── Navigation │ │ ├── Drawer.jsx │ │ ├── ExpandMenu.jsx │ │ ├── Menu.jsx │ │ ├── Navbar.jsx │ │ └── Navigation.jsx ├── constant.js ├── main.jsx ├── pages │ ├── About.jsx │ ├── Contact.jsx │ ├── Home.jsx │ ├── Products.jsx │ └── Services.jsx └── styles │ └── index.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Drawer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/components/Navigation/Drawer.jsx -------------------------------------------------------------------------------- /src/components/Navigation/ExpandMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/components/Navigation/ExpandMenu.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/components/Navigation/Menu.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/components/Navigation/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/components/Navigation/Navigation.jsx -------------------------------------------------------------------------------- /src/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/constant.js -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/pages/About.jsx -------------------------------------------------------------------------------- /src/pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/pages/Contact.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/pages/Products.jsx -------------------------------------------------------------------------------- /src/pages/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/pages/Services.jsx -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshuopinion/react-navigation/HEAD/vite.config.js --------------------------------------------------------------------------------