Config: E-Mail im Footer aus .env.local (OWNER_EMAIL)

Footer erhält email-Prop von page.tsx (Server Component),
die process.env.OWNER_EMAIL zur Build-Zeit liest.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-04-25 22:21:46 +02:00
commit a187605aba
2 changed files with 6 additions and 7 deletions

View file

@ -17,7 +17,7 @@ export default function Home() {
<FocusSection />
<PhilosophySection />
</main>
<Footer />
<Footer email={process.env.OWNER_EMAIL} />
</>
)
}