Files
Dev-Landing/src/pages/index.astro
Matthias Meister d2ba994fad Add native cookie consent and move hero intro above CTA
- Restore CookieConsent banner behavior with the new dependency
- Reposition the right-panel intro above the Projekt anfragen button
- Add focused tests and update build metadata
2026-05-06 21:22:12 +02:00

31 lines
985 B
Plaintext

---
import { LandingHeroSection } from "@/components/landing-hero-section";
import { LandingRest } from "@/components/landing";
import "@/styles/global.css";
---
<html lang="de">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Matthias Meister Webdesign | Websites für KMU aus der Region</title>
<script
src="https://rybbit.matthias.lol/api/script.js"
data-site-id="60abc81e438a"
defer></script>
</head>
<body>
<main class="min-h-screen overflow-hidden bg-background text-foreground">
<LandingHeroSection client:media="(min-width: 1024px)" />
<LandingRest />
</main>
<script>
import { initCookieInfoBanner } from "@/lib/cookie-banner-info";
initCookieInfoBanner();
</script>
</body>
</html>