Skip to content

Commit

Permalink
🚚 chore(structure): Movendo o index.html para o diretório root
Browse files Browse the repository at this point in the history
  • Loading branch information
JrValerio committed Jan 12, 2024
1 parent 17e3dd0 commit 14ccf52
Showing 1 changed file with 29 additions and 27 deletions.
56 changes: 29 additions & 27 deletions starter-code/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" href="//use.fontawesome.com/releases/v6.5.1/css/all.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png"/>
<!-- Link css -->
<link rel="stylesheet" href="./src/styles/style.css" />
<link rel="stylesheet" href="./starter-code/src/styles/style.css" />

<title>Audiophile - home</title>
</head>
Expand All @@ -17,7 +17,7 @@
<div class="header__content">
<p class="header__title">
<img
src="./assets/shared/desktop/logo.svg"
src="./starter-code/assets/shared/desktop/logo.svg"
alt="Logo audiophile">
</p>
<!-- Navegação -->
Expand Down Expand Up @@ -48,7 +48,7 @@
<!-- Icone do carrinho -->
<p class="header__icon--cart">
<img
src="./assets/shared/desktop/icon-cart.svg"
src="./starter-code/assets/shared/desktop/icon-cart.svg"
alt="Icone de carrinho">
</p>
</div>
Expand Down Expand Up @@ -82,7 +82,7 @@ <h1 class="information__title">XX99 Mark II Headphones</h1>
<ul class="products__list">
<li class="list__item--product">
<img
src="./assets/product-xx99-mark-one-headphones/desktop/image-category-page-preview-removebg-preview.png"
src="./starter-code/assets/product-xx99-mark-one-headphones/desktop/image-category-page-preview-removebg-preview.png"
alt=""
class="product__image">
<p class="product__text">Headphones</p>
Expand All @@ -91,32 +91,32 @@ <h1 class="information__title">XX99 Mark II Headphones</h1>
shop
</a>
<img
src="./assets/shared/desktop/icon-arrow-right.svg" alt="">
src="./starter-code/assets/shared/desktop/icon-arrow-right.svg" alt="">
</div>

</li>
<li class="list__item--product">
<img
src="./assets/product-zx9-speaker/desktop/image-category-page-preview-removebg.png"
src="./starter-code/assets/product-zx9-speaker/desktop/image-category-page-preview-removebg.png"
alt=""
class="product__image" \>
<p class="product__text">Speakers</p>
<div class="product__link">
<a href="#" class="product__link--item">shop</a>
<img
src="./assets/shared/desktop/icon-arrow-right.svg" alt="">
src="./starter-code/assets/shared/desktop/icon-arrow-right.svg" alt="">
</div>
</li>
<li class="list__item--product">
<img
src="./assets/product-yx1-earphones/desktop/image-category-page-preview-removebg.png"
src="./starter-code/assets/product-yx1-earphones/desktop/image-category-page-preview-removebg.png"
alt=""
class="product__image">
<p class="product__text">Earphones</p>
<div class="product__link">
<a href="#" class="product__link--item">shop</a>
<img
src="./assets/shared/desktop/icon-arrow-right.svg" alt="">
src="./starter-code/assets/shared/desktop/icon-arrow-right.svg" alt="">
</div>
</li>
</ul>
Expand All @@ -125,24 +125,26 @@ <h1 class="information__title">XX99 Mark II Headphones</h1>

<!-- Seção de produtos recomendados -->
<section id="recommended-products">
<article id="zx9-speaker">
<h3>ZX9 speaker</h3>
<p>
Upgrade to premium speakers that are phenomenally built to deliver
truly remarkable sound.
</p>
<a href="#zx9-speaker">See product</a>
</article>

<article id="zx7-speaker">
<h3>ZX7 speaker</h3>
<a href="#zx7-speaker">See product</a>
</article>

<article id="yx1-earphones">
<h3>YX1 earphones</h3>
<a href="#yx1-earphones">See product</a>
</article>
<div>
<article id="zx9-speaker">
<h3>ZX9 speaker</h3>
<p>
Upgrade to premium speakers that are phenomenally built to deliver
truly remarkable sound.
</p>
<a href="#zx9-speaker">See product</a>
</article>

<article id="zx7-speaker">
<h3>ZX7 speaker</h3>
<a href="#zx7-speaker">See product</a>
</article>

<article id="yx1-earphones">
<h3>YX1 earphones</h3>
<a href="#yx1-earphones">See product</a>
</article>
</div>
</section>

<!-- Seção sobre a loja -->
Expand Down

0 comments on commit 14ccf52

Please sign in to comment.