<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookish Bliss - Read & Explore</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="components/book-card.js"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-header></custom-header>
<hero-slider></hero-slider>
<main class="flex-grow container mx-auto px-4 py-8">
<section class="mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6 text-center">Featured Books</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<book-card
title="The Great Adventure"
author="John Doe"
cover="http://static.photos/education/640x360/1"
link="#">
</book-card>
<book-card
title="Mystery of the Old House"
author="Jane Smith"
cover="http://static.photos/education/640x360/2"
link="#">
</book-card>
<book-card
title="Journey to the Stars"
author="Alex Johnson"
cover="http://static.photos/education/640x360/3"
link="#">
</book-card>
<book-card
title="Ocean Depths"
author="Maria Garcia"
cover="http://static.photos/education/640x360/4"
link="#">
</book-card>
<book-card
title="Mountain High"
author="David Lee"
cover="http://static.photos/education/640x360/5"
link="#">
</book-card>
<book-card
title="Desert Secrets"
author="Sarah Wilson"
cover="http://static.photos/education/640x360/6"
link="#">
</book-card>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Our Gallery</h2>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/7" alt="Book event" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/8" alt="Reading corner" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/9" alt="Book signing" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/10" alt="Library" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/11" alt="Book club" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/12" alt="Author talk" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/13" alt="Reading time" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
<div class="gallery-item overflow-hidden rounded-lg shadow-md hover:shadow-xl transition-shadow">
<img src="http://static.photos/education/640x360/14" alt="Book stack" class="w-full h-48 object-cover hover:scale-105 transition-transform">
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">What Our Readers Say</h2>
<testimonial-slider></testimonial-slider>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="components/hero-slider.js"></script>
<script src="components/testimonial-slider.js"></script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>