├── .netlify └── state.json ├── public ├── robots.txt ├── favicon.ico ├── manifest.json └── index.html ├── src ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── Background.jpg │ ├── Background2.jpg │ ├── background3.jpg │ └── chin kabsa 3.jpg ├── index.js ├── GlobalStyles.js ├── Component │ ├── Navbar │ │ ├── index.js │ │ └── NavbarElements.js │ ├── Feature │ │ ├── index.js │ │ └── FeatureElements.js │ ├── Sidebar │ │ ├── index.js │ │ └── SidebarElements.js │ ├── FirstPage │ │ ├── index.js │ │ └── FirstPageElements.js │ ├── Products │ │ ├── index.js │ │ ├── ProductsElements.js │ │ └── data.js │ └── Footer │ │ ├── FooterElements.js │ │ └── index.js └── App.js ├── .gitignore ├── package.json ├── README.md └── .eslintcache /.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "5ede1c62-30e5-4548-b4b8-b3fb5dfa5770" 3 | } -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/1.jpg -------------------------------------------------------------------------------- /src/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/2.jpg -------------------------------------------------------------------------------- /src/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/3.jpg -------------------------------------------------------------------------------- /src/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/4.jpg -------------------------------------------------------------------------------- /src/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/5.jpg -------------------------------------------------------------------------------- /src/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/6.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/images/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/Background.jpg -------------------------------------------------------------------------------- /src/images/Background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/Background2.jpg -------------------------------------------------------------------------------- /src/images/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/background3.jpg -------------------------------------------------------------------------------- /src/images/chin kabsa 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasankan/Restaurant-website/HEAD/src/images/chin kabsa 3.jpg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | ReactDOM.render( 6 | 7 | 8 | , 9 | document.getElementById('root') 10 | ); 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/GlobalStyles.js: -------------------------------------------------------------------------------- 1 | import { createGlobalStyle } from 'styled-components'; 2 | 3 | export const GlobalStyle = createGlobalStyle` 4 | * { 5 | box-sizing: border-box; 6 | margin:0; 7 | padding: 0; 8 | font-family: 'Kanit', sans-serif; 9 | 10 | } 11 | `; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /src/Component/Navbar/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Nav, NavLink, NavIcon, Bars } from './NavbarElements'; 3 | 4 | const Navbar = ({ toggle }) => { 5 | return ( 6 | <> 7 | 13 | 14 | ); 15 | }; 16 | 17 | export default Navbar; -------------------------------------------------------------------------------- /src/Component/Feature/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { FeatureContainer, FeatureButton } from './FeatureElements'; 3 | 4 | const Feature = () => { 5 | return ( 6 | 7 |

Explore More!

8 |

Kuzhimanthi, Kabsa, Al fahm, Fresh juices and many more.

9 | Order Now 10 |
11 | ); 12 | }; 13 | 14 | export default Feature; -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { BrowserRouter as Router } from 'react-router-dom'; 3 | import FirstPage from './Component/FirstPage'; 4 | import Products from './Component/Products'; 5 | import { GlobalStyle } from './GlobalStyles'; 6 | import { productData, productDataTwo } from './Component/Products/data'; 7 | import Feature from './Component/Feature'; 8 | import Footer from './Component/Footer'; 9 | 10 | function App() { 11 | return ( 12 | 13 | 14 | 15 | 16 | 17 | 18 |