├── .gitignore ├── ; ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public └── favicon.ico ├── src ├── App.css ├── App.jsx ├── app │ ├── CartSlice.js │ └── Store.js ├── assets │ ├── 1.png │ ├── emptybag.png │ ├── facebook.svg │ ├── hero.png │ ├── hightlightimg.png │ ├── instagram.svg │ ├── logo.png │ ├── menu.svg │ ├── messenger.svg │ ├── nike-adapt-bb-smart.png │ ├── nike-adapt-bb.png │ ├── nike-air-red.png │ ├── product1.png │ ├── product10.png │ ├── product11.png │ ├── product12.png │ ├── product2.png │ ├── product3.png │ ├── product4.png │ ├── product5.png │ ├── product6.png │ ├── product7.png │ ├── product8.png │ ├── product9.png │ ├── sneaker.png │ ├── twitter.svg │ ├── video │ │ ├── clip.mp4 │ │ ├── vcover1.png │ │ ├── vcover2.png │ │ └── vcover3.png │ └── youtube.svg ├── components │ ├── Cart.jsx │ ├── Cart │ │ ├── CartCount.jsx │ │ ├── CartEmpty.jsx │ │ └── CartItem.jsx │ ├── FlexContent.jsx │ ├── Footer.jsx │ ├── Hero.jsx │ ├── Navbar.jsx │ ├── Sales.jsx │ ├── Stories.jsx │ ├── index.js │ └── utils │ │ ├── Clips.jsx │ │ ├── Item.jsx │ │ ├── SocialLinks.jsx │ │ └── Title.jsx ├── data │ └── data.js ├── index.css └── main.jsx ├── tailwind.config.cjs └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /;: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Taxes and Shipping Will Calculate At Shipping
66 | 67 |{text}
76 |62 | {truncate(val.text, { length: 175 })} 63 |
64 |46 | {text} 47 |
48 |