Book / templates /homepage.html
anwesh2410's picture
Upload 39 files
54862ee verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - BookNest</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Include Navigation Bar -->
{% include 'navbar.html' %}
<!-- Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="flash-messages">
{% for category, message in messages %}
<div class="alert alert-{{ category }}">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Welcome to BookNest</h1>
<p>Your ultimate destination for book recommendations and reviews.</p>
<a href="{{ url_for('index') }}" class="cta-button">Get Started</a>
<a href="{{ url_for('login') }}" class="cta-button">Login</a>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2>Why Choose BookNest?</h2>
<div class="features-grid">
<div class="feature-item">
<img src="{{ url_for('static', filename='images/personalized.png') }}" alt="Personalized Recommendations" class="feature-image">
<h3>Personalized Recommendations</h3>
<p>Get book suggestions tailored to your reading preferences.</p>
</div>
<div class="feature-item">
<img src="{{ url_for('static', filename='images/community.png') }}" alt="Community Reviews" class="feature-image">
<h3>Community Reviews</h3>
<p>Read and write reviews from a community of book enthusiasts.</p>
</div>
<div class="feature-item">
<img src="{{ url_for('static', filename='images/track.png') }}" alt="Track Your Reading" class="feature-image">
<h3>Track Your Reading</h3>
<p>Keep track of the books you've read and want to read.</p>
</div>
</div>
</div>
</section>
<!-- Links Section -->
<section class="links">
<div class="container">
<h2>Connect with Us</h2>
<div class="links-grid">
<a href="https://github.com/anwesh2410/Book-Recommendation-Site" target="_blank" class="link-item">
<img src="{{ url_for('static', filename='images/github.jpeg') }}" alt="GitHub" class="link-icon"> GitHub
</a>
</div>
</div>
</section>
<!-- Include Footer -->
{% include 'footer.html' %}
</body>
</html>