Ersetzt die PDF-Dateien und aktualisiert alle Referenzen in page.tsx, E-Mail-Template, README und Cleanup-Guide auf die 2026-Versionen. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import Hero from '@/components/Hero';
|
|
import Intro from '@/components/Intro';
|
|
import DownloadSection from '@/components/DownloadSection';
|
|
import Experience from '@/components/Experience';
|
|
import Skills from '@/components/Skills';
|
|
import SoftSkills from '@/components/SoftSkills';
|
|
import Portfolio from '@/components/Portfolio';
|
|
import Contact from '@/components/Contact';
|
|
import Footer from '@/components/Footer';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Hero />
|
|
|
|
<Intro />
|
|
|
|
<DownloadSection
|
|
title="Sebastian Fröhlich"
|
|
subtitle="Meinen Lebenslauf herunterladen"
|
|
buttonText="Jetzt downloaden"
|
|
href="/downloads/Lebenslauf_2026.pdf"
|
|
backgroundImage="/img/bg-lebenslauf.jpg"
|
|
/>
|
|
|
|
<Experience />
|
|
|
|
<Skills />
|
|
|
|
<SoftSkills />
|
|
|
|
<DownloadSection
|
|
title="Sebastian Fröhlich"
|
|
subtitle="Meine Arbeitszeugnisse herunterladen"
|
|
buttonText="Jetzt downloaden"
|
|
href="/downloads/Zeugnisse_2026.pdf"
|
|
backgroundImage="/img/bg-arbeitszeugnisse.jpg"
|
|
/>
|
|
|
|
<Portfolio />
|
|
|
|
<DownloadSection
|
|
title="Sebastian Fröhlich"
|
|
subtitle="Meine Referenzen herunterladen"
|
|
buttonText="Jetzt downloaden"
|
|
href="/downloads/Referenzen.pdf"
|
|
backgroundImage="/img/keyboard-bg.jpg"
|
|
/>
|
|
|
|
<Contact />
|
|
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|