jamulix-homepage/app/page.tsx
dschlueter a187605aba 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>
2026-04-25 22:21:46 +02:00

23 lines
663 B
TypeScript

import { Header } from '@/components/header'
import { Hero } from '@/components/hero'
import { AboutSection } from '@/components/about-section'
import { ProjectsSection } from '@/components/projects-section'
import { FocusSection } from '@/components/focus-section'
import { PhilosophySection } from '@/components/philosophy-section'
import { Footer } from '@/components/footer'
export default function Home() {
return (
<>
<Header />
<main>
<Hero />
<AboutSection />
<ProjectsSection />
<FocusSection />
<PhilosophySection />
</main>
<Footer email={process.env.OWNER_EMAIL} />
</>
)
}