├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── Data │ └── Data.js ├── components │ ├── Category.jsx │ ├── Food.jsx │ ├── Headline.jsx │ ├── Hero.jsx │ └── navbar.jsx ├── index.css ├── index.js └── logo.svg └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/Data/Data.js -------------------------------------------------------------------------------- /src/components/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/components/Category.jsx -------------------------------------------------------------------------------- /src/components/Food.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/components/Food.jsx -------------------------------------------------------------------------------- /src/components/Headline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/components/Headline.jsx -------------------------------------------------------------------------------- /src/components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/components/Hero.jsx -------------------------------------------------------------------------------- /src/components/navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/components/navbar.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/src/logo.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya14092003/Super_Eats/HEAD/tailwind.config.js --------------------------------------------------------------------------------