├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── le-bistro-urbain.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── 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 ├── b.png ├── bg.png ├── chef.png ├── findus.png ├── gallery01.png ├── gallery02.webp ├── gallery03.png ├── gallery04.png ├── gallery05.jpg ├── gallery06.jpg ├── gallery07.jpg ├── gallery08.jpg ├── gericht.png ├── knife.png ├── laurels.png ├── logo.png ├── meal.mp4 ├── menu.png ├── overlaybg.png ├── quote.png ├── sign.png ├── spoon.png ├── spoon.svg └── welcome.png ├── components ├── Footer │ ├── FooterOverlay.css │ ├── FooterOverlay.js │ ├── Newsletter.css │ └── Newsletter.js ├── Menuitem │ ├── MenuItem.css │ └── MenuItem.jsx ├── Navbar │ ├── Navbar.css │ └── Navbar.js ├── SubHeading │ └── SubHeading.jsx └── index.js ├── constants ├── data.js ├── images.js └── index.js ├── container ├── AboutUs │ ├── AboutUs.css │ └── AboutUs.js ├── Chef │ ├── Chef.css │ └── Chef.js ├── Findus │ └── FindUs.js ├── Footer │ ├── Footer.css │ └── Footer.js ├── Gallery │ ├── Gallery.css │ └── Gallery.js ├── Header │ ├── Header.css │ └── Header.js ├── Intro │ ├── Intro.css │ └── Intro.js ├── Laurels │ ├── Laurels.css │ └── Laurels.js ├── Menu │ ├── SpecialMenu.css │ └── SpecialMenu.js └── index.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/le-bistro-urbain.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.idea/le-bistro-urbain.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/G.png -------------------------------------------------------------------------------- /src/assets/award01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/award01.png -------------------------------------------------------------------------------- /src/assets/award02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/award02.png -------------------------------------------------------------------------------- /src/assets/award03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/award03.png -------------------------------------------------------------------------------- /src/assets/award05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/award05.png -------------------------------------------------------------------------------- /src/assets/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/b.png -------------------------------------------------------------------------------- /src/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/bg.png -------------------------------------------------------------------------------- /src/assets/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/chef.png -------------------------------------------------------------------------------- /src/assets/findus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/findus.png -------------------------------------------------------------------------------- /src/assets/gallery01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery01.png -------------------------------------------------------------------------------- /src/assets/gallery02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery02.webp -------------------------------------------------------------------------------- /src/assets/gallery03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery03.png -------------------------------------------------------------------------------- /src/assets/gallery04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery04.png -------------------------------------------------------------------------------- /src/assets/gallery05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery05.jpg -------------------------------------------------------------------------------- /src/assets/gallery06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery06.jpg -------------------------------------------------------------------------------- /src/assets/gallery07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery07.jpg -------------------------------------------------------------------------------- /src/assets/gallery08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gallery08.jpg -------------------------------------------------------------------------------- /src/assets/gericht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/gericht.png -------------------------------------------------------------------------------- /src/assets/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/knife.png -------------------------------------------------------------------------------- /src/assets/laurels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/laurels.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/meal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/meal.mp4 -------------------------------------------------------------------------------- /src/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/menu.png -------------------------------------------------------------------------------- /src/assets/overlaybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/overlaybg.png -------------------------------------------------------------------------------- /src/assets/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/quote.png -------------------------------------------------------------------------------- /src/assets/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/sign.png -------------------------------------------------------------------------------- /src/assets/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/spoon.png -------------------------------------------------------------------------------- /src/assets/spoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/spoon.svg -------------------------------------------------------------------------------- /src/assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/assets/welcome.png -------------------------------------------------------------------------------- /src/components/Footer/FooterOverlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Footer/FooterOverlay.css -------------------------------------------------------------------------------- /src/components/Footer/FooterOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Footer/FooterOverlay.js -------------------------------------------------------------------------------- /src/components/Footer/Newsletter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Footer/Newsletter.css -------------------------------------------------------------------------------- /src/components/Footer/Newsletter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Footer/Newsletter.js -------------------------------------------------------------------------------- /src/components/Menuitem/MenuItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Menuitem/MenuItem.css -------------------------------------------------------------------------------- /src/components/Menuitem/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Menuitem/MenuItem.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/Navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/SubHeading/SubHeading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/SubHeading/SubHeading.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/constants/data.js -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/constants/images.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/container/AboutUs/AboutUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/AboutUs/AboutUs.css -------------------------------------------------------------------------------- /src/container/AboutUs/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/AboutUs/AboutUs.js -------------------------------------------------------------------------------- /src/container/Chef/Chef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Chef/Chef.css -------------------------------------------------------------------------------- /src/container/Chef/Chef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Chef/Chef.js -------------------------------------------------------------------------------- /src/container/Findus/FindUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Findus/FindUs.js -------------------------------------------------------------------------------- /src/container/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Footer/Footer.css -------------------------------------------------------------------------------- /src/container/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Footer/Footer.js -------------------------------------------------------------------------------- /src/container/Gallery/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Gallery/Gallery.css -------------------------------------------------------------------------------- /src/container/Gallery/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Gallery/Gallery.js -------------------------------------------------------------------------------- /src/container/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Header/Header.css -------------------------------------------------------------------------------- /src/container/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Header/Header.js -------------------------------------------------------------------------------- /src/container/Intro/Intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Intro/Intro.css -------------------------------------------------------------------------------- /src/container/Intro/Intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Intro/Intro.js -------------------------------------------------------------------------------- /src/container/Laurels/Laurels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Laurels/Laurels.css -------------------------------------------------------------------------------- /src/container/Laurels/Laurels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Laurels/Laurels.js -------------------------------------------------------------------------------- /src/container/Menu/SpecialMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Menu/SpecialMenu.css -------------------------------------------------------------------------------- /src/container/Menu/SpecialMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/Menu/SpecialMenu.js -------------------------------------------------------------------------------- /src/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/container/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thuotracy/Le-Bistro-Urbain/HEAD/src/index.js --------------------------------------------------------------------------------