├── .gitignore ├── README.md ├── netlify.toml ├── package.json ├── public ├── index.html ├── logo.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── components ├── CartDropdown │ ├── CartDropdown.js │ └── CartDropdown.scss ├── Checkout │ ├── Checkout.css │ └── Checkout.js ├── Contact │ ├── Contact.css │ └── Contact.js ├── Context │ └── Cart.context.js ├── Dashboard │ ├── Dashboard.css │ └── Dashboard.js ├── Footer │ ├── Footer.css │ ├── Footer.js │ └── Toggle.js ├── Home │ ├── Home.css │ ├── Home.js │ └── Nav.js ├── ItemInCartDropdown │ ├── ItemInCartDropDown.js │ └── ItemInCartDropDown.scss ├── Login │ ├── Login.css │ └── Login.js ├── Logout │ ├── Logout.css │ └── Logout.js ├── Lookbook │ ├── Lookbook.css │ ├── Lookbook.js │ ├── Slides.js │ └── data.js ├── Modal │ ├── MainModal.js │ ├── Modal.css │ └── Modal.js ├── Search │ └── Search.js ├── Sections │ ├── Sections.css │ └── Sections.js ├── Shop │ ├── Buttons.js │ ├── Clothes.js │ ├── Store.scss │ └── StoreBase.js ├── Sidebar │ ├── Sidebar.css │ └── Sidebar.js └── Toggle │ ├── Toggle.css │ └── Toggle.js ├── data.js ├── img ├── cross.png ├── gift.png ├── github.png ├── heart.png ├── heartempty.png ├── left-arrow.png ├── like.png ├── linkedin.png ├── loader.svg ├── logo.png ├── sale.png └── shopping-bag.png ├── index.css ├── index.js ├── reportWebVitals.js ├── routes └── RouteComponent.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/CartDropdown/CartDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/CartDropdown/CartDropdown.js -------------------------------------------------------------------------------- /src/components/CartDropdown/CartDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/CartDropdown/CartDropdown.scss -------------------------------------------------------------------------------- /src/components/Checkout/Checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Checkout/Checkout.css -------------------------------------------------------------------------------- /src/components/Checkout/Checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Checkout/Checkout.js -------------------------------------------------------------------------------- /src/components/Contact/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Contact/Contact.css -------------------------------------------------------------------------------- /src/components/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Contact/Contact.js -------------------------------------------------------------------------------- /src/components/Context/Cart.context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Context/Cart.context.js -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Footer/Toggle.js -------------------------------------------------------------------------------- /src/components/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Home/Home.css -------------------------------------------------------------------------------- /src/components/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Home/Home.js -------------------------------------------------------------------------------- /src/components/Home/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Home/Nav.js -------------------------------------------------------------------------------- /src/components/ItemInCartDropdown/ItemInCartDropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/ItemInCartDropdown/ItemInCartDropDown.js -------------------------------------------------------------------------------- /src/components/ItemInCartDropdown/ItemInCartDropDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/ItemInCartDropdown/ItemInCartDropDown.scss -------------------------------------------------------------------------------- /src/components/Login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Login/Login.css -------------------------------------------------------------------------------- /src/components/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Login/Login.js -------------------------------------------------------------------------------- /src/components/Logout/Logout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Logout/Logout.css -------------------------------------------------------------------------------- /src/components/Logout/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Logout/Logout.js -------------------------------------------------------------------------------- /src/components/Lookbook/Lookbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Lookbook/Lookbook.css -------------------------------------------------------------------------------- /src/components/Lookbook/Lookbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Lookbook/Lookbook.js -------------------------------------------------------------------------------- /src/components/Lookbook/Slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Lookbook/Slides.js -------------------------------------------------------------------------------- /src/components/Lookbook/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Lookbook/data.js -------------------------------------------------------------------------------- /src/components/Modal/MainModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Modal/MainModal.js -------------------------------------------------------------------------------- /src/components/Modal/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Modal/Modal.css -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Search/Search.js -------------------------------------------------------------------------------- /src/components/Sections/Sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Sections/Sections.css -------------------------------------------------------------------------------- /src/components/Sections/Sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Sections/Sections.js -------------------------------------------------------------------------------- /src/components/Shop/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Shop/Buttons.js -------------------------------------------------------------------------------- /src/components/Shop/Clothes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Shop/Clothes.js -------------------------------------------------------------------------------- /src/components/Shop/Store.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Shop/Store.scss -------------------------------------------------------------------------------- /src/components/Shop/StoreBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Shop/StoreBase.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/components/Toggle/Toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Toggle/Toggle.css -------------------------------------------------------------------------------- /src/components/Toggle/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/components/Toggle/Toggle.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/data.js -------------------------------------------------------------------------------- /src/img/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/cross.png -------------------------------------------------------------------------------- /src/img/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/gift.png -------------------------------------------------------------------------------- /src/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/github.png -------------------------------------------------------------------------------- /src/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/heart.png -------------------------------------------------------------------------------- /src/img/heartempty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/heartempty.png -------------------------------------------------------------------------------- /src/img/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/left-arrow.png -------------------------------------------------------------------------------- /src/img/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/like.png -------------------------------------------------------------------------------- /src/img/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/linkedin.png -------------------------------------------------------------------------------- /src/img/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/loader.svg -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/sale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/sale.png -------------------------------------------------------------------------------- /src/img/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/img/shopping-bag.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/routes/RouteComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/routes/RouteComponent.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnastasiaLunina/react_fashion_store/HEAD/src/setupTests.js --------------------------------------------------------------------------------