├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── assets │ └── tshirt.png ├── components │ ├── Footer │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ ├── Layout │ │ ├── index.tsx │ │ └── styles.ts │ ├── Product │ │ ├── index.tsx │ │ └── styles.ts │ ├── ProductAction │ │ ├── index.tsx │ │ └── styles.ts │ └── SellerInfo │ │ ├── index.tsx │ │ └── styles.ts ├── index.tsx ├── react-app-env.d.ts └── styles │ └── GlobalStyles.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/assets/tshirt.png -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Layout/styles.ts -------------------------------------------------------------------------------- /src/components/Product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Product/index.tsx -------------------------------------------------------------------------------- /src/components/Product/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/Product/styles.ts -------------------------------------------------------------------------------- /src/components/ProductAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/ProductAction/index.tsx -------------------------------------------------------------------------------- /src/components/ProductAction/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/ProductAction/styles.ts -------------------------------------------------------------------------------- /src/components/SellerInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/SellerInfo/index.tsx -------------------------------------------------------------------------------- /src/components/SellerInfo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/components/SellerInfo/styles.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/styles/GlobalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/src/styles/GlobalStyles.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-mercadolivre/HEAD/yarn.lock --------------------------------------------------------------------------------