128 lines
3.4 KiB
HTML
128 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="BookStore - Discover and buy your next favorite book">
|
|
<title>BookStore - Home</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="mobile-container">
|
|
<site-header>
|
|
<top-bar></top-bar>
|
|
<horizontal-scroll-nav></horizontal-scroll-nav>
|
|
<search-bar></search-bar>
|
|
</site-header>
|
|
|
|
<site-content>
|
|
<section class="section">
|
|
<h2 class="section-title">Featured Books</h2>
|
|
<div class="book-grid">
|
|
<book-card
|
|
title="The Midnight Library"
|
|
author="Matt Haig"
|
|
price="$14.99"
|
|
rating="4.5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="Atomic Habits"
|
|
author="James Clear"
|
|
price="$16.99"
|
|
rating="5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="The Psychology of Money"
|
|
author="Morgan Housel"
|
|
price="$12.99"
|
|
rating="4"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="Project Hail Mary"
|
|
author="Andy Weir"
|
|
price="$18.99"
|
|
rating="4.5"
|
|
href="book.html"
|
|
></book-card>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2 class="section-title">New Releases</h2>
|
|
<div class="book-grid">
|
|
<book-card
|
|
title="Tomorrow, and Tomorrow"
|
|
author="Gabrielle Zevin"
|
|
price="$15.99"
|
|
rating="4"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="The House in the Pines"
|
|
author="Ana Reyes"
|
|
price="$13.99"
|
|
rating="3.5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="Demon Copperhead"
|
|
author="Barbara Kingsolver"
|
|
price="$19.99"
|
|
rating="5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="The Light We Carry"
|
|
author="Michelle Obama"
|
|
price="$17.99"
|
|
rating="4.5"
|
|
href="book.html"
|
|
></book-card>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2 class="section-title">Best Sellers</h2>
|
|
<div class="book-grid">
|
|
<book-card
|
|
title="Where the Crawdads Sing"
|
|
author="Delia Owens"
|
|
price="$11.99"
|
|
rating="4.5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="The Silent Patient"
|
|
author="Alex Michaelides"
|
|
price="$14.99"
|
|
rating="4"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="Educated"
|
|
author="Tara Westover"
|
|
price="$13.99"
|
|
rating="4.5"
|
|
href="book.html"
|
|
></book-card>
|
|
<book-card
|
|
title="Becoming"
|
|
author="Michelle Obama"
|
|
price="$16.99"
|
|
rating="5"
|
|
href="book.html"
|
|
></book-card>
|
|
</div>
|
|
</section>
|
|
</site-content>
|
|
|
|
<site-footer></site-footer>
|
|
</div>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|