Files
beWerbung-2025/app/page.tsx
T
cbazzaandClaude Sonnet 4.5 30a380cae8 Add complete bewerbung Next.js application
- Add all Next.js application files
- Include components, app structure, and public assets
- Remove empty bewerbung placeholder folder
- Update .gitignore for Next.js project

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-18 09:11:47 +01:00

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_2025.pdf"
backgroundImage="/img/bg-lebenslauf.jpg"
/>
<Experience />
<Skills />
<SoftSkills />
<DownloadSection
title="Sebastian Fröhlich"
subtitle="Meine Arbeitszeugnisse herunterladen"
buttonText="Jetzt downloaden"
href="/downloads/Zeugnisse_2025.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>
);
}