├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── assets │ └── item │ ├── Bonda.jpg │ ├── Dosa.jpg │ ├── Idli.jpg │ ├── Juice.jpg │ ├── Pancake.jpg │ ├── Paratha.jpg │ ├── Poha.jpg │ ├── Poori.jpg │ └── Vada.jpg ├── src ├── App.css ├── App.jsx ├── index.css ├── main.jsx └── suby │ ├── api.js │ ├── components │ ├── Chains.jsx │ ├── FirmCollections.jsx │ ├── ItemsDisplay.jsx │ ├── ProductMenu.jsx │ └── TopBar.jsx │ ├── data.js │ └── pages │ └── LandingPage.jsx ├── vercel.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/item/Bonda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Bonda.jpg -------------------------------------------------------------------------------- /public/assets/item/Dosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Dosa.jpg -------------------------------------------------------------------------------- /public/assets/item/Idli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Idli.jpg -------------------------------------------------------------------------------- /public/assets/item/Juice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Juice.jpg -------------------------------------------------------------------------------- /public/assets/item/Pancake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Pancake.jpg -------------------------------------------------------------------------------- /public/assets/item/Paratha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Paratha.jpg -------------------------------------------------------------------------------- /public/assets/item/Poha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Poha.jpg -------------------------------------------------------------------------------- /public/assets/item/Poori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Poori.jpg -------------------------------------------------------------------------------- /public/assets/item/Vada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/public/assets/item/Vada.jpg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/suby/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/api.js -------------------------------------------------------------------------------- /src/suby/components/Chains.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/components/Chains.jsx -------------------------------------------------------------------------------- /src/suby/components/FirmCollections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/components/FirmCollections.jsx -------------------------------------------------------------------------------- /src/suby/components/ItemsDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/components/ItemsDisplay.jsx -------------------------------------------------------------------------------- /src/suby/components/ProductMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/components/ProductMenu.jsx -------------------------------------------------------------------------------- /src/suby/components/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/components/TopBar.jsx -------------------------------------------------------------------------------- /src/suby/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/data.js -------------------------------------------------------------------------------- /src/suby/pages/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/src/suby/pages/LandingPage.jsx -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeluguWebTech/Swiggy_Clone_React/HEAD/vite.config.js --------------------------------------------------------------------------------