14 lines
721 B
Plaintext
14 lines
721 B
Plaintext
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
{{ head_html|safe }}
|
|
<body class="cyberpunk-body min-h-screen flex flex-col antialiased" style="background-color: hsl(var(--background)); color: hsl(var(--foreground));">
|
|
{{ admin_banner_html|safe }}
|
|
<div aria-hidden="true" class="scanlines pointer-events-none fixed inset-0 z-50" data-cyberpunk-scanlines></div>
|
|
<section class="w-full">{{ slots.hero|safe }}</section>
|
|
<section class="w-full max-w-6xl mx-auto px-4 py-16">{{ slots.features|safe }}</section>
|
|
<section class="w-full">{{ slots.cta|safe }}</section>
|
|
<footer class="w-full mt-auto" style="border-top: 1px solid hsl(var(--border));">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|