├── .gitattributes ├── public ├── favicon.ico └── index.html ├── src ├── App.jsx ├── responsive.js ├── index.js ├── components │ ├── Announcements.jsx │ ├── Products.jsx │ ├── Categories.jsx │ ├── CategoryItem.jsx │ ├── Newsletter.jsx │ ├── Product.jsx │ ├── Navbar.jsx │ ├── Slider.jsx │ └── Footer.jsx ├── pages │ ├── Home.jsx │ ├── Login.jsx │ ├── Register.jsx │ ├── ProductList.jsx │ ├── Product.jsx │ └── Cart.jsx └── data.js ├── .vscode └── settings.json ├── .gitignore ├── CONTRIBUTORS.md ├── .github └── dependabot.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── package.json ├── README.md └── CODE_OF_CONDUCT.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranodeepbanerjee/hacktoberfest-ecommerce/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | 2 | import Home from "./pages/Home" 3 | 4 | const App = () => { 5 | return ; 6 | }; 7 | 8 | export default App; 9 | -------------------------------------------------------------------------------- /src/responsive.js: -------------------------------------------------------------------------------- 1 | import { css } from "styled-components"; 2 | 3 | export const mobile = (props) => { 4 | return css` 5 | @media only screen and (max-width: 380px) { 6 | ${props} 7 | } 8 | `; 9 | }; -------------------------------------------------------------------------------- /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 | ); -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2, 3 | "editor.formatOnSave": true, 4 | "editor.defaultFormatter": "esbenp.prettier-vscode", 5 | "files.insertFinalNewline": true, 6 | "files.trimFinalNewlines": true, 7 | "css.validate": false, 8 | "editor.wordWrap": "wordWrapColumn", 9 | "editor.wordWrapColumn": 120 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 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | # Contributors: 2 | 3 | 1. [Ranodeep Banerjee](https://github.com/ranodeepbanerjee) 4 | 2. [Subhojeet Das](https://github.com/subhojeetdas1107) 5 | 3. [Akash Kotal](https://github.com/sky01green) 6 | 4. [Souvik Banerjee](https://github.com/Souvik2376) 7 | 5. [Rajdeep Ghosh](https://github.com/rumbleftw) 8 | 6. [Swagata Das](https://github.com/SwagataDas123) 9 | 7. [Saikat Sheet](https://github.com/Saikat-SS7) 10 | 8. [Abir Roy](https://github.com/abhuman) 11 | -------------------------------------------------------------------------------- /src/components/Announcements.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import styled from 'styled-components' 3 | 4 | const Container = styled.div` 5 | height: 30px; 6 | background-color: teal; 7 | color: white; 8 | display: flex; 9 | align-items: center; 10 | justify-content: center; 11 | font-size: 14px; 12 | font-weight: 500; 13 | `; 14 | const Announcements = () => { 15 | return ( 16 | 17 | Super deal! Free shipping on orders 18 | 19 | ) 20 | } 21 | 22 | export default Announcements -------------------------------------------------------------------------------- /src/components/Products.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import { popularProducts } from "../data"; 3 | import Product from "./Product"; 4 | 5 | const Container = styled.div` 6 | padding: 20px; 7 | display: flex; 8 | flex-wrap: wrap; 9 | justify-content: space-between; 10 | `; 11 | 12 | const Products = () => { 13 | return ( 14 | 15 | {popularProducts.map((item) => ( 16 | 17 | ))} 18 | 19 | ); 20 | }; 21 | 22 | export default Products; -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | 13 | -------------------------------------------------------------------------------- /src/components/Categories.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import { categories } from "../data"; 3 | import { mobile } from "../responsive"; 4 | import CategoryItem from "./CategoryItem"; 5 | 6 | const Container = styled.div` 7 | display: flex; 8 | padding: 20px; 9 | justify-content: space-between; 10 | ${mobile({ padding: "0px", flexDirection:"column" })} 11 | `; 12 | 13 | const Categories = () => { 14 | return ( 15 | 16 | {categories.map((item) => ( 17 | 18 | ))} 19 | 20 | ); 21 | }; 22 | 23 | export default Categories; 24 | -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- 1 | 2 | import React from 'react' 3 | import Announcements from '../components/Announcements' 4 | import Categories from '../components/Categories' 5 | import Footer from '../components/Footer' 6 | import Navbar from '../components/Navbar' 7 | import Newsletter from '../components/Newsletter' 8 | import Products from '../components/Products' 9 | import Slider from '../components/Slider' 10 | 11 | const Home = () => { 12 | return ( 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 |
22 | ) 23 | } 24 | 25 | export default Home -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 17 | RB SHOP 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## How to Contribute 2 | 3 | * Fork this repo. 4 | * Clone the forked repo. 5 | * Create a new branch. 6 | * Make changes to the code. 7 | * Commit the changes. 8 | * Push the changes to the forked repo. 9 | * Create a pull request. 10 | * and done...will be reviewed soon. 11 | 12 | ## Practice to make a Pull Request 13 | * Fork this repo. 14 | * Clone the forked repo. 15 | * Create a new branch. 16 | * Commit the changes. 17 | * Push the changes to the forked repo. 18 | * Create a pull request. 19 | * and You have practiced how to make a pull request. 20 | * Your PR will be merged soon. 21 | 22 |
23 | 24 | #### For more information on how to contribute to open source projects, check out this [link](https://opensource.guide/how-to-contribute/) and [this](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) and "How to Contribute to Open Source" by [freeCodeCamp](https://www.freecodecamp.org 25 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Badal-05 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "new", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/react": "^11.10.4", 7 | "@emotion/styled": "^11.10.4", 8 | "@material-ui/core": "^4.12.4", 9 | "@material-ui/icons": "^4.11.3", 10 | "@mui/material": "^5.10.10", 11 | "@testing-library/jest-dom": "^5.11.4", 12 | "@testing-library/react": "^11.1.0", 13 | "@testing-library/user-event": "^12.1.10", 14 | "react": "^17.0.2", 15 | "react-dom": "^17.0.2", 16 | "react-scripts": "^4.0.3", 17 | "styled-components": "^5.3.5", 18 | "web-vitals": "^1.0.1" 19 | }, 20 | "scripts": { 21 | "start": "react-scripts start", 22 | "build": "react-scripts build", 23 | "test": "react-scripts test", 24 | "eject": "react-scripts eject" 25 | }, 26 | "eslintConfig": { 27 | "extends": [ 28 | "react-app", 29 | "react-app/jest" 30 | ] 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.2%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 1 chrome version", 40 | "last 1 firefox version", 41 | "last 1 safari version" 42 | ] 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/components/CategoryItem.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import { mobile } from "../responsive"; 3 | 4 | const Container = styled.div` 5 | flex: 1; 6 | margin: 3px; 7 | height: 70vh; 8 | position: relative; 9 | `; 10 | 11 | const Image = styled.img` 12 | width: 100%; 13 | height: 100%; 14 | object-fit: cover; 15 | ${mobile({ height: "20vh" })} 16 | `; 17 | 18 | const Info = styled.div` 19 | position: absolute; 20 | top: 0; 21 | left: 0; 22 | width: 100%; 23 | height: 100%; 24 | display: flex; 25 | flex-direction: column; 26 | align-items: center; 27 | justify-content: center; 28 | `; 29 | 30 | const Title = styled.h1` 31 | color:white; 32 | margin-bottom: 20px; 33 | background-color:black; 34 | opacity:0.6; 35 | padding:5px 36 | `; 37 | 38 | const Button = styled.button` 39 | border:none; 40 | padding: 10px; 41 | background-color: white; 42 | color:gray; 43 | cursor: pointer; 44 | font-weight: 600; 45 | :hover { 46 | background-color: teal; 47 | padding: 10px; 48 | color: white; 49 | border-radius: 10%; 50 | -webkit-box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.17); 51 | box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.17); 52 | 53 | } 54 | transition: all 0.4s; 55 | 56 | `; 57 | 58 | const CategoryItem = ({ item }) => { 59 | return ( 60 | 61 | 62 | 63 | {item.title} 64 | 65 | 66 | 67 | ); 68 | }; 69 | 70 | export default CategoryItem; 71 | -------------------------------------------------------------------------------- /src/components/Newsletter.jsx: -------------------------------------------------------------------------------- 1 | import { Send } from "@material-ui/icons"; 2 | import styled from "styled-components"; 3 | import { mobile } from "../responsive"; 4 | 5 | const Container = styled.div` 6 | height: 60vh; 7 | background-color: #fcf5f5; 8 | display: flex; 9 | align-items: center; 10 | justify-content: center; 11 | flex-direction: column; 12 | `; 13 | const Title = styled.h1` 14 | font-size: 70px; 15 | margin-bottom: 20px; 16 | `; 17 | 18 | const Desc = styled.div` 19 | font-size: 24px; 20 | font-weight: 300; 21 | margin-bottom: 20px; 22 | ${mobile({ textAlign: "center" })} 23 | `; 24 | 25 | const InputContainer = styled.div` 26 | width: 50%; 27 | height: 40px; 28 | background-color: white; 29 | display: flex; 30 | justify-content: space-between; 31 | border: 1px solid lightgray; 32 | box-shadow : -2px 2px grey; 33 | ${mobile({ width: "80%" })} 34 | `; 35 | 36 | const Input = styled.input` 37 | border: none; 38 | flex: 8; 39 | padding-left: 20px; 40 | outline : none ; 41 | font-size : 16px 42 | 43 | `; 44 | 45 | const Button = styled.button` 46 | flex: 1; 47 | border: none; 48 | background-color: teal; 49 | color: white; 50 | :hover{ 51 | cursor: pointer ; 52 | } 53 | `; 54 | 55 | const Newsletter = () => { 56 | return ( 57 | 58 | Newsletter 59 | Get timely updates from your favorite products. 60 | 61 | 62 | 65 | 66 | 67 | ); 68 | }; 69 | 70 | export default Newsletter; 71 | -------------------------------------------------------------------------------- /src/pages/Login.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import {mobile} from "../responsive"; 3 | 4 | const Container = styled.div` 5 | width: 100vw; 6 | height: 100vh; 7 | background: linear-gradient( 8 | rgba(255, 255, 255, 0.5), 9 | rgba(255, 255, 255, 0.5) 10 | ), 11 | url("https://images.pexels.com/photos/6984650/pexels-photo-6984650.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940") 12 | center; 13 | background-size: cover; 14 | display: flex; 15 | align-items: center; 16 | justify-content: center; 17 | `; 18 | 19 | const Wrapper = styled.div` 20 | width: 25%; 21 | padding: 20px; 22 | background-color: white; 23 | ${mobile({ width: "75%" })} 24 | `; 25 | 26 | const Title = styled.h1` 27 | font-size: 24px; 28 | font-weight: 300; 29 | `; 30 | 31 | const Form = styled.form` 32 | display: flex; 33 | flex-direction: column; 34 | `; 35 | 36 | const Input = styled.input` 37 | flex: 1; 38 | min-width: 40%; 39 | margin: 10px 0; 40 | padding: 10px; 41 | `; 42 | 43 | const Button = styled.button` 44 | width: 40%; 45 | border: none; 46 | padding: 15px 20px; 47 | background-color: teal; 48 | color: white; 49 | cursor: pointer; 50 | margin-bottom: 10px; 51 | `; 52 | 53 | const Link = styled.a` 54 | margin: 5px 0px; 55 | font-size: 12px; 56 | text-decoration: underline; 57 | cursor: pointer; 58 | `; 59 | 60 | const Login = () => { 61 | return ( 62 | 63 | 64 | SIGN IN 65 |
66 | 67 | 68 | 69 | DO NOT YOU REMEMBER THE PASSWORD? 70 | CREATE A NEW ACCOUNT 71 |
72 |
73 |
74 | ); 75 | }; 76 | 77 | export default Login; -------------------------------------------------------------------------------- /src/pages/Register.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import { mobile } from "../responsive"; 3 | 4 | const Container = styled.div` 5 | width: 100vw; 6 | height: 100vh; 7 | background: linear-gradient( 8 | rgba(255, 255, 255, 0.5), 9 | rgba(255, 255, 255, 0.5) 10 | ), 11 | url("https://images.pexels.com/photos/6984661/pexels-photo-6984661.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940") 12 | center; 13 | background-size: cover; 14 | display: flex; 15 | align-items: center; 16 | justify-content: center; 17 | `; 18 | 19 | const Wrapper = styled.div` 20 | width: 40%; 21 | padding: 20px; 22 | background-color: white; 23 | ${mobile({ width: "75%" })} 24 | `; 25 | 26 | const Title = styled.h1` 27 | font-size: 24px; 28 | font-weight: 300; 29 | `; 30 | 31 | const Form = styled.form` 32 | display: flex; 33 | flex-wrap: wrap; 34 | `; 35 | 36 | const Input = styled.input` 37 | flex: 1; 38 | min-width: 40%; 39 | margin: 20px 10px 0px 0px; 40 | padding: 10px; 41 | `; 42 | 43 | const Agreement = styled.span` 44 | font-size: 12px; 45 | margin: 20px 0px; 46 | `; 47 | 48 | const Button = styled.button` 49 | width: 40%; 50 | border: none; 51 | padding: 15px 20px; 52 | background-color: teal; 53 | color: white; 54 | cursor: pointer; 55 | `; 56 | 57 | const Register = () => { 58 | return ( 59 | 60 | 61 | CREATE AN ACCOUNT 62 |
63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | By creating an account, I consent to the processing of my personal 71 | data in accordance with the PRIVACY POLICY 72 | 73 | 74 |
75 |
76 |
77 | ); 78 | }; 79 | 80 | export default Register; -------------------------------------------------------------------------------- /src/components/Product.jsx: -------------------------------------------------------------------------------- 1 | import { 2 | FavoriteBorderOutlined, 3 | SearchOutlined, 4 | ShoppingCartOutlined, 5 | } from "@material-ui/icons"; 6 | import styled from "styled-components"; 7 | 8 | const Info = styled.div` 9 | opacity: 0; 10 | width: 100%; 11 | height: 100%; 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | background-color: rgba(0, 0, 0, 0.2); 16 | z-index: 3; 17 | display: flex; 18 | align-items: center; 19 | justify-content: center; 20 | transition: all 0.5s ease; 21 | cursor: pointer; 22 | `; 23 | 24 | const Container = styled.div` 25 | flex: 1; 26 | margin: 5px; 27 | min-width: 280px; 28 | height: 350px; 29 | display: flex; 30 | align-items: center; 31 | justify-content: center; 32 | background-color: #f5fbfd; 33 | position: relative; 34 | &:hover ${Info}{ 35 | opacity: 1; 36 | } 37 | `; 38 | 39 | const Circle = styled.div` 40 | width: 200px; 41 | height: 200px; 42 | border-radius: 50%; 43 | background-color: white; 44 | position: absolute; 45 | `; 46 | 47 | const Image = styled.img` 48 | height: 75%; 49 | z-index: 2; 50 | `; 51 | 52 | const Icon = styled.div` 53 | width: 40px; 54 | height: 40px; 55 | border-radius: 50%; 56 | background-color: white; 57 | display: flex; 58 | align-items: center; 59 | justify-content: center; 60 | margin: 10px; 61 | transition: all 0.5s ease; 62 | &:hover { 63 | background-color: #e9f5f5; 64 | transform: scale(1.1); 65 | } 66 | `; 67 | 68 | const Product = ({ item }) => { 69 | return ( 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | ); 86 | }; 87 | 88 | export default Product; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | LINK- https://rbshop.netlify.app/ 2 | 3 | 4 | 5 | # Hacktoberfest2022 6 | ![image](https://user-images.githubusercontent.com/99472914/192144059-5cd0b329-f238-474b-b475-7385eaa35d05.png) 7 | 8 | 9 | 10 | [![Open Source Love](https://firstcontributions.github.io/open-source-badges/badges/open-source-v1/open-source.svg)](https://github.com/sj5027052/Hacktoberfest2022) 11 | 12 | 13 | 14 | 15 | If you want to practice to make a pull request, follow the CONTRIBUTING.md 16 | 17 | 18 | 19 | Check out `good-first-issues` for contributing [here](https://github.com/sj5027052/Hacktoberfest2022/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) 20 | 21 | 22 |
23 | 24 | 25 | 26 | ### Contributing 27 | 28 | Please read [CONTRIBUTING.md](/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](/CODE_OF_CONDUCT.md) for details on our code of conduct, and the process for submitting pull requests to us. 29 | 30 | ### Rules 31 | 32 | * Read the [CONTRIBUTING.md](/CONTRIBUTING.md) file. 33 | * Star the Repository. 34 | * Respect people. 35 | * Be friendly, helpful, and patient. 36 | * You can contribute in any way. 37 | 38 | ### Support 39 | 40 | If you like this project, please consider supporting it by giving it a ⭐️. It will help us to grow and improve this project and help others to find it. 41 | 42 | ### Conclusion 43 | 44 | - Happy Contributing! 🎉 45 | - May you have a great Hacktoberfest 2022! 🎉 46 | - If you have any questions, feel free to ask me. I will be happy to help you. 😊 47 | 48 | ### References 49 | 50 | - [Hacktoberfest 2022](https://hacktoberfest.digitalocean.com) 51 | - [Hacktoberfest 2022 Participation Guidelines](https://hacktoberfest.com/participation) 52 | 53 |
54 | 55 | - This project and other projects listed above are a part of Hacktoberfest 2022 and are open to all members of the GitHub community. Any member may contribute to these projects without being a collaborator or a maintainer and earn a T-shirt from DigitalOcean and DEV by making four valid pull requests (PRs) between October 1-31 (in any time zone). 56 | 57 | - The first 40,000 participants (maintainers and contributors) who complete Hacktoberfest can elect to receive one of two prizes: a tree planted in their name, or the Hacktoberfest 2022 t-shirt. 58 | 59 | **✨ Thanks goes to these wonderful people ✨** 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/pages/ProductList.jsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | import Navbar from "../components/Navbar"; 3 | import Products from "../components/Products"; 4 | import Newsletter from "../components/Newsletter"; 5 | import Footer from "../components/Footer"; 6 | import { mobile } from "../responsive"; 7 | import Announcements from "../components/Announcements"; 8 | 9 | const Container = styled.div``; 10 | 11 | const Title = styled.h1` 12 | margin: 20px; 13 | `; 14 | 15 | const FilterContainer = styled.div` 16 | display: flex; 17 | justify-content: space-between; 18 | `; 19 | 20 | const Filter = styled.div` 21 | margin: 20px; 22 | ${mobile({ width: "0px 20px", display: "flex", flexDirection: "column" })} 23 | `; 24 | 25 | const FilterText = styled.span` 26 | font-size: 20px; 27 | font-weight: 600; 28 | margin-right: 20px; 29 | ${mobile({ marginRight: "0px" })} 30 | `; 31 | 32 | const Select = styled.select` 33 | padding: 10px; 34 | margin-right: 20px; 35 | ${mobile({ margin: "10px 0px" })} 36 | `; 37 | const Option = styled.option``; 38 | 39 | const ProductList = () => { 40 | return ( 41 | 42 | 43 | 44 | Dresses 45 | 46 | 47 | Filter Products: 48 | 59 | 69 | 70 | 71 | Sort Products: 72 | 77 | 78 | 79 | 80 | 81 |