- Astro static site generator with zero-JS default output - Tailwind CSS for styling (consistent with main app stack) - German-language landing page: hero, how-it-works, features, pricing, FAQ, CTA - Placeholder pages for Impressum, Datenschutz, AGB - Reusable Header/Footer/Base layout components - FTP-deployable static output via `npm run build` - README with content TODO list for CMO Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
897 B
Plaintext
31 lines
897 B
Plaintext
---
|
|
interface Props {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
const {
|
|
title,
|
|
description = 'Wohlruf gibt Ihren Eltern eine persönliche Telefonnummer mit einem einfühlsamen KI-Sprachbegleiter — buchbar als Monatsabo.',
|
|
} = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<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, initial-scale=1" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<meta name="description" content={description} />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:type" content="website" />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body class="bg-white text-gray-900 antialiased">
|
|
<slot />
|
|
</body>
|
|
</html>
|