├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── G.png ├── award01.png ├── award02.png ├── award03.png ├── award05.png ├── bg.png ├── chef.png ├── findus.png ├── gallery01.png ├── gallery02.png ├── gallery03.png ├── gallery04.png ├── gericht.png ├── knife.png ├── laurels.png ├── logo.png ├── meal.mp4 ├── menu.png ├── overlaybg.png ├── quote.png ├── resimg.png ├── sign.png ├── spoon.png ├── spoon.svg └── welcome.png ├── components ├── Footer │ ├── FooterOverlay.css │ ├── FooterOverlay.jsx │ ├── Newsletter.css │ └── Newsletter.jsx ├── Menuitem │ ├── MenuItem.css │ └── MenuItem.jsx ├── Navbar │ ├── Navbar.css │ └── Navbar.jsx ├── SubHeading │ └── SubHeading.jsx └── index.js ├── constants ├── data.js ├── images.js └── index.js ├── container ├── AboutUs │ ├── AboutUs.css │ └── AboutUs.jsx ├── Chef │ ├── Chef.css │ └── Chef.jsx ├── Findus │ └── FindUs.jsx ├── Footer │ ├── Footer.css │ └── Footer.jsx ├── Gallery │ ├── Gallery.css │ └── Gallery.jsx ├── Header │ ├── Header.css │ └── Header.jsx ├── Intro │ ├── Intro.css │ └── Intro.jsx ├── Laurels │ ├── Laurels.css │ └── Laurels.jsx ├── Menu │ ├── SpecialMenu.css │ └── SpecialMenu.jsx └── index.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/G.png -------------------------------------------------------------------------------- /src/assets/award01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/award01.png -------------------------------------------------------------------------------- /src/assets/award02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/award02.png -------------------------------------------------------------------------------- /src/assets/award03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/award03.png -------------------------------------------------------------------------------- /src/assets/award05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/award05.png -------------------------------------------------------------------------------- /src/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/bg.png -------------------------------------------------------------------------------- /src/assets/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/chef.png -------------------------------------------------------------------------------- /src/assets/findus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/findus.png -------------------------------------------------------------------------------- /src/assets/gallery01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/gallery01.png -------------------------------------------------------------------------------- /src/assets/gallery02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/gallery02.png -------------------------------------------------------------------------------- /src/assets/gallery03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/gallery03.png -------------------------------------------------------------------------------- /src/assets/gallery04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/gallery04.png -------------------------------------------------------------------------------- /src/assets/gericht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/gericht.png -------------------------------------------------------------------------------- /src/assets/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/knife.png -------------------------------------------------------------------------------- /src/assets/laurels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/laurels.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/meal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/meal.mp4 -------------------------------------------------------------------------------- /src/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/menu.png -------------------------------------------------------------------------------- /src/assets/overlaybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/overlaybg.png -------------------------------------------------------------------------------- /src/assets/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/quote.png -------------------------------------------------------------------------------- /src/assets/resimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/resimg.png -------------------------------------------------------------------------------- /src/assets/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/sign.png -------------------------------------------------------------------------------- /src/assets/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/spoon.png -------------------------------------------------------------------------------- /src/assets/spoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/spoon.svg -------------------------------------------------------------------------------- /src/assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/assets/welcome.png -------------------------------------------------------------------------------- /src/components/Footer/FooterOverlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Footer/FooterOverlay.css -------------------------------------------------------------------------------- /src/components/Footer/FooterOverlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Footer/FooterOverlay.jsx -------------------------------------------------------------------------------- /src/components/Footer/Newsletter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Footer/Newsletter.css -------------------------------------------------------------------------------- /src/components/Footer/Newsletter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Footer/Newsletter.jsx -------------------------------------------------------------------------------- /src/components/Menuitem/MenuItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Menuitem/MenuItem.css -------------------------------------------------------------------------------- /src/components/Menuitem/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Menuitem/MenuItem.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/SubHeading/SubHeading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/SubHeading/SubHeading.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/constants/data.js -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/constants/images.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/container/AboutUs/AboutUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/AboutUs/AboutUs.css -------------------------------------------------------------------------------- /src/container/AboutUs/AboutUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/AboutUs/AboutUs.jsx -------------------------------------------------------------------------------- /src/container/Chef/Chef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Chef/Chef.css -------------------------------------------------------------------------------- /src/container/Chef/Chef.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Chef/Chef.jsx -------------------------------------------------------------------------------- /src/container/Findus/FindUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Findus/FindUs.jsx -------------------------------------------------------------------------------- /src/container/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Footer/Footer.css -------------------------------------------------------------------------------- /src/container/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/container/Gallery/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Gallery/Gallery.css -------------------------------------------------------------------------------- /src/container/Gallery/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Gallery/Gallery.jsx -------------------------------------------------------------------------------- /src/container/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Header/Header.css -------------------------------------------------------------------------------- /src/container/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Header/Header.jsx -------------------------------------------------------------------------------- /src/container/Intro/Intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Intro/Intro.css -------------------------------------------------------------------------------- /src/container/Intro/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Intro/Intro.jsx -------------------------------------------------------------------------------- /src/container/Laurels/Laurels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Laurels/Laurels.css -------------------------------------------------------------------------------- /src/container/Laurels/Laurels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Laurels/Laurels.jsx -------------------------------------------------------------------------------- /src/container/Menu/SpecialMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Menu/SpecialMenu.css -------------------------------------------------------------------------------- /src/container/Menu/SpecialMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/Menu/SpecialMenu.jsx -------------------------------------------------------------------------------- /src/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/container/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgueMorg/Gericht-UX-UI-Lending/HEAD/src/index.js --------------------------------------------------------------------------------