Initial Astro + Tailwind scaffold for Wohlruf landing page

- 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>
This commit is contained in:
2026-04-03 04:43:35 +00:00
commit c031971815
17 changed files with 474 additions and 0 deletions

5
tsconfig.json Normal file
View File

@@ -0,0 +1,5 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}