├── .gitignore ├── README.md ├── menu.gif ├── menu2.gif ├── package.json ├── public └── index.html ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Board.js │ ├── Ropes.js │ ├── dessert │ │ ├── BackgroundDessert.js │ │ ├── CategoryDessert.js │ │ ├── ContainerDessert.js │ │ ├── Dessert.css │ │ ├── Dessert.js │ │ ├── DessertCard.js │ │ ├── DessertDescription.js │ │ ├── DessertName.js │ │ ├── PhotoDessert.js │ │ └── SideDessert.js │ ├── entree │ │ ├── BackgroundCard.js │ │ ├── Category.js │ │ ├── ContainerEntree.js │ │ ├── DishDescription.js │ │ ├── DishName.js │ │ ├── Entree.css │ │ ├── Entree.js │ │ ├── EntreeCard.js │ │ ├── PhotoEntree.js │ │ └── SideEntree.js │ ├── header │ │ ├── Header.css │ │ ├── Header.js │ │ ├── Main.js │ │ ├── Note.js │ │ ├── SideDish.js │ │ └── Title.js │ ├── images │ │ ├── SideDessert.png │ │ ├── SideEntree.png │ │ ├── dessert.jpg │ │ ├── dish.png │ │ ├── rope.png │ │ ├── steak.jpg │ │ ├── tomato.png │ │ └── wine.jpg │ └── main │ │ ├── BackgroundMain.js │ │ ├── CategoryMain.js │ │ ├── ContainerMain.js │ │ ├── Main.css │ │ ├── MainCard.js │ │ ├── MainDescription.js │ │ ├── MainDish.js │ │ ├── MainName.js │ │ ├── PhotoMain.js │ │ └── SideMain.js ├── index.css ├── index.js └── registerServiceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/README.md -------------------------------------------------------------------------------- /menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/menu.gif -------------------------------------------------------------------------------- /menu2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/menu2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/Board.js -------------------------------------------------------------------------------- /src/components/Ropes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/Ropes.js -------------------------------------------------------------------------------- /src/components/dessert/BackgroundDessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/BackgroundDessert.js -------------------------------------------------------------------------------- /src/components/dessert/CategoryDessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/CategoryDessert.js -------------------------------------------------------------------------------- /src/components/dessert/ContainerDessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/ContainerDessert.js -------------------------------------------------------------------------------- /src/components/dessert/Dessert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/Dessert.css -------------------------------------------------------------------------------- /src/components/dessert/Dessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/Dessert.js -------------------------------------------------------------------------------- /src/components/dessert/DessertCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/DessertCard.js -------------------------------------------------------------------------------- /src/components/dessert/DessertDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/DessertDescription.js -------------------------------------------------------------------------------- /src/components/dessert/DessertName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/DessertName.js -------------------------------------------------------------------------------- /src/components/dessert/PhotoDessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/PhotoDessert.js -------------------------------------------------------------------------------- /src/components/dessert/SideDessert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/dessert/SideDessert.js -------------------------------------------------------------------------------- /src/components/entree/BackgroundCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/BackgroundCard.js -------------------------------------------------------------------------------- /src/components/entree/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/Category.js -------------------------------------------------------------------------------- /src/components/entree/ContainerEntree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/ContainerEntree.js -------------------------------------------------------------------------------- /src/components/entree/DishDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/DishDescription.js -------------------------------------------------------------------------------- /src/components/entree/DishName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/DishName.js -------------------------------------------------------------------------------- /src/components/entree/Entree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/Entree.css -------------------------------------------------------------------------------- /src/components/entree/Entree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/Entree.js -------------------------------------------------------------------------------- /src/components/entree/EntreeCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/EntreeCard.js -------------------------------------------------------------------------------- /src/components/entree/PhotoEntree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/PhotoEntree.js -------------------------------------------------------------------------------- /src/components/entree/SideEntree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/entree/SideEntree.js -------------------------------------------------------------------------------- /src/components/header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/Header.css -------------------------------------------------------------------------------- /src/components/header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/Header.js -------------------------------------------------------------------------------- /src/components/header/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/Main.js -------------------------------------------------------------------------------- /src/components/header/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/Note.js -------------------------------------------------------------------------------- /src/components/header/SideDish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/SideDish.js -------------------------------------------------------------------------------- /src/components/header/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/header/Title.js -------------------------------------------------------------------------------- /src/components/images/SideDessert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/SideDessert.png -------------------------------------------------------------------------------- /src/components/images/SideEntree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/SideEntree.png -------------------------------------------------------------------------------- /src/components/images/dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/dessert.jpg -------------------------------------------------------------------------------- /src/components/images/dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/dish.png -------------------------------------------------------------------------------- /src/components/images/rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/rope.png -------------------------------------------------------------------------------- /src/components/images/steak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/steak.jpg -------------------------------------------------------------------------------- /src/components/images/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/tomato.png -------------------------------------------------------------------------------- /src/components/images/wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/images/wine.jpg -------------------------------------------------------------------------------- /src/components/main/BackgroundMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/BackgroundMain.js -------------------------------------------------------------------------------- /src/components/main/CategoryMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/CategoryMain.js -------------------------------------------------------------------------------- /src/components/main/ContainerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/ContainerMain.js -------------------------------------------------------------------------------- /src/components/main/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/Main.css -------------------------------------------------------------------------------- /src/components/main/MainCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/MainCard.js -------------------------------------------------------------------------------- /src/components/main/MainDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/MainDescription.js -------------------------------------------------------------------------------- /src/components/main/MainDish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/MainDish.js -------------------------------------------------------------------------------- /src/components/main/MainName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/MainName.js -------------------------------------------------------------------------------- /src/components/main/PhotoMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/PhotoMain.js -------------------------------------------------------------------------------- /src/components/main/SideMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/components/main/SideMain.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NadiKuts/react-scrolling-effect/HEAD/yarn.lock --------------------------------------------------------------------------------