


├── .gitignore ├── Card-shop ├── img │ ├── adidas.svg │ ├── airmax.png │ ├── nike.svg │ ├── puma.svg │ ├── sakura.png │ └── yeezy.png ├── index.html └── style.css ├── Disney-ui ├── img │ ├── insideoutlogo.png │ ├── logo.png │ └── sadness.png ├── index.html └── style.css ├── Employer Dashboard ├── index.html └── style.css ├── Login-form ├── background.jpg ├── index.html └── style.css ├── Mario Linkedin ├── font │ └── PoetsenOne-Regular.ttf ├── img │ ├── Yoshi.png │ ├── banner.jpg │ ├── browser.png │ ├── donkeykong.png │ ├── kamek.png │ ├── linkedin.svg │ ├── luigi.png │ ├── mario.jpg │ ├── mariohandsup.png │ ├── mariostar.png │ ├── peach.png │ ├── toad.jpg │ ├── wario.jpg │ └── zelda.png ├── index.html └── style.css ├── PlayGame Store ├── css │ ├── style.css │ └── style.css.map ├── icons │ ├── crown.svg │ ├── filter.svg │ ├── loupe.svg │ ├── menu.svg │ ├── on-off-button.svg │ ├── right-arrow.svg │ ├── settings.svg │ ├── shopping-bag.svg │ ├── trophy.svg │ ├── user.svg │ └── windows-logo.svg ├── images │ ├── Cyberpunk-2077.jpg │ ├── GodHood-cover.jpg │ ├── civilization_vi.jpg │ ├── dead_by_deathlight.jpg │ ├── deathgarden.jpg │ ├── hollow_night.jpg │ ├── logo.png │ ├── pagan_online.jpg │ ├── playstation-logotype.svg │ └── yoshi.jpg ├── index.html └── sass │ └── style.scss ├── Pricing-cards ├── index.html └── style.css ├── README.md ├── Search-engine ├── business.svg ├── index.html ├── legal.svg ├── search.svg ├── style.css └── team.svg ├── Shoe-View ├── img │ ├── puma-logo.svg │ ├── shoe top.png │ ├── shoe.png │ ├── shoeback.webp │ └── shoeback3.png ├── index.html └── style.css ├── Shoes-shop ├── img │ ├── black_shoe.jpeg │ ├── nike.svg │ ├── red_shoe.png │ ├── seta-esquerda.svg │ └── white_shoe.png ├── index.html └── style.css ├── Sonic ├── img │ ├── paramount.png │ ├── ring.png │ ├── ringbg.png │ ├── sonic1.png │ ├── sonic2.png │ ├── sonic3.png │ └── sonic4.png ├── index.html ├── js.js └── style.css ├── Upload-form ├── index.html ├── style.css └── upload.svg ├── User-type ├── index.html └── style.css ├── package-lock.json ├── readmeImages ├── disney.jpg ├── form.jpg ├── mario.png ├── playgames_store.png ├── shoesCard.jpg ├── usertype.jpg └── vpnFinder.png ├── team-members ├── .gitignore ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── components │ │ ├── Card │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── ConteudoPrincipal │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── HeaderP │ │ │ ├── index.js │ │ │ └── style.js │ │ └── MenuLateral │ │ │ ├── index.js │ │ │ └── style.js │ ├── index.css │ ├── index.js │ └── style.js └── yarn.lock └── vpn-finder ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── App.scss ├── assets └── img │ ├── cloud.png │ ├── hidemeVPN.jpg │ ├── hidemeVPN.png │ ├── nordVPN.png │ ├── pureVPN.png │ ├── readmeImg.png │ └── zenmateVPN.png ├── components ├── button │ ├── button.scss │ └── index.jsx ├── card │ ├── card.scss │ └── index.jsx ├── header │ ├── header.scss │ └── index.jsx ├── input │ ├── index.jsx │ └── input.scss └── menu │ ├── index.jsx │ └── menu.scss ├── index.js └── index.scss /.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 | -------------------------------------------------------------------------------- /Card-shop/img/adidas.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 37 | -------------------------------------------------------------------------------- /Card-shop/img/airmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilolmc/interfaces-clone/0da3bbd484a738bffb57b073e0cc667695414397/Card-shop/img/airmax.png -------------------------------------------------------------------------------- /Card-shop/img/nike.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | -------------------------------------------------------------------------------- /Card-shop/img/puma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 29 | -------------------------------------------------------------------------------- /Card-shop/img/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilolmc/interfaces-clone/0da3bbd484a738bffb57b073e0cc667695414397/Card-shop/img/sakura.png -------------------------------------------------------------------------------- /Card-shop/img/yeezy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilolmc/interfaces-clone/0da3bbd484a738bffb57b073e0cc667695414397/Card-shop/img/yeezy.png -------------------------------------------------------------------------------- /Card-shop/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |Ronnie Fieg partners with Puma to redesign the R698. Inspired by Japanese sakura blossoms
39 |The "Infrared" colorway is without any doubt one of the most iconic in the Nike Air Max history.
65 |The low-top YEEZY BOOST 350 int tan features an upper composed of tornal Primeknit.
92 |Close
53 | 54 | 55 | 56 | 57 |65 | Sadness is literally the very definition and being of 66 | sarrow and gloom. She is hardly ever used because Joy 67 | is the boss and doesn't want Riley to ever be sad, even 68 | when she needs.Because of this, Joy treats Sadness badly. 69 |
70 | 71 | 72 |handerson999@gmail.com
88 | 89 | CA009 90 | Angular Developer 91 | (11) 92343-5942 92 | Mar 27,2020 93 | 94 | 95 | 96 |handerson999@gmail.com
108 | 109 | CA009 110 | Angular Developer 111 | (11) 92343-5942 112 | Mar 27,2020 113 | 114 | 115 | 116 |handerson999@gmail.com
128 | 129 | CA009 130 | Angular Developer 131 | (11) 92343-5942 132 | Mar 27,2020 133 | 134 | 135 | 136 |Click for your shoot
23 |Click for your shoot
35 | 36 | 37 | 113 | 114 |14 | Sign-up in less than 30 seconds. Try out our 7 day risk free trial, 15 | upgrade at any time, no questions, no hassie. 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
What do you need help with?
73 |Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque proin orci pellentesque nulla ac. Mi egestas urna tortor, mollis in ullamcorper porta sodales pretium. Vulputate lobortis amet amet erat viverra pellentesque tristique etiam augue. Consequat arcu elementum cras dui ultricies donec nisl lectus sed.
40 | 41 | 42 | 43 |Drop files to upload or
29 | 30 | 31 | 32 | 33 |Peace on Earth A Wonderful With But No Way
14 |{cardData.text}
16 | {children} 17 |