Add BaseLayout with meta tags, favicon, robots.txt, and OG card

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-24 17:13:07 +02:00
parent e0a7ec4651
commit e084177acf
5 changed files with 84 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
---
import '../styles/global.css';
import BaseLayout from '../layouts/BaseLayout.astro';
---
<html lang="en">
<head><meta charset="utf-8" /><title>scaffold</title></head>
<body class="bg-bg text-text"><p class="text-accent font-mono">scaffold ok</p></body>
</html>
<BaseLayout title="Cameleer — scaffolding" description="Scaffolding placeholder.">
<main class="max-w-content mx-auto px-6 py-24">
<p class="text-accent font-mono">BaseLayout ok</p>
</main>
</BaseLayout>