| <!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') }}"> |
| |
| <link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet"> |
| </head> |
| <body> |
| |
| {% include 'navbar.html' %} |
|
|
| |
| {% 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 %} |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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.html' %} |
| </body> |
| </html> |