Social_Cooking/index.html

94 lines
3.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invité | Events entdecken</title>
<link rel="stylesheet" href="css/landingpage.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-dU7ZrF1pFq5kVnPzlV9+04YhARzNjCX5Q5P1shgMpuN4s5I8mI8QD4981h7kYtV7sSgNldR0z5pZW5bS2ZpY3Q==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Header: matches event detail/create with invite logo and pill navigation links -->
<header class="top-nav-wrap">
<div class="top-nav">
<a class="brand" href="index.html" aria-label="Zur Startseite">
<img src="assets/invite-logo.svg" alt="Invité">
</a>
<nav class="top-nav-links" aria-label="Hauptnavigation">
<a class="nav-link" href="event_create.html">Event erstellen</a>
<a class="nav-link nav-link--login" href="login.html">Login</a>
</nav>
</div>
</header>
<main class="main-content">
<!-- Hero: uses .hero, .btn, .image-card, and .hero-image for a polished first impression -->
<section class="hero">
<div class="hero__left">
<h1>Events entdecken, Plätze sichern, Genuss teilen.</h1>
<p>Finde kulinarische Erlebnisse in deiner Nähe oder erstelle dein eigenes Event alles in einer warmen, einladenden Invité-Atmosphäre.</p>
<a class="btn" href="login.html">Anmelden</a>
</div>
<div class="hero__right">
<div class="image-card">
<img class="hero-image" src="assets/Startpage ingredients.jpg" alt="Startpage Ingredients" />
</div>
</div>
</section>
<section class="how-it-works">
<div class="how-it-works__header">
<h2>So funktioniert's</h2>
</div>
<div class="how-it-works__steps">
<article class="how-step">
<div class="how-step__icon"><i class="fas fa-user-plus" aria-hidden="true"></i></div>
<div class="how-step__number">1</div>
<p class="how-step__label">Anmelden</p>
</article>
<article class="how-step">
<div class="how-step__icon"><i class="fas fa-calendar-plus" aria-hidden="true"></i></div>
<div class="how-step__number">2</div>
<p class="how-step__label">Event erstellen</p>
</article>
<article class="how-step">
<div class="how-step__icon"><i class="fas fa-utensils" aria-hidden="true"></i></div>
<div class="how-step__number">3</div>
<p class="how-step__label">Gemeinsam essen</p>
</article>
</div>
</section>
<!-- Main Content: uses .gallery, .gallery__track, .gallery__item, .placeholder, and .gallery__info to present event cards and overview content -->
<section class="gallery">
<div class="gallery__track">
<article class="gallery__item">
<div class="placeholder"></div>
</article>
<article class="gallery__item">
<div class="placeholder"></div>
</article>
<article class="gallery__item">
<div class="placeholder"></div>
</article>
</div>
<div class="gallery__dots">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div class="gallery__info">
<div class="gallery__handle"><i class="fas fa-location-dot gallery__icon" aria-hidden="true"></i><span>Invité Events</span></div>
</div>
</section>
</main>
<footer class="footer">
<a href="#" class="footer__link">Impressum</a>
</footer>
</body>
</html>