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>
This commit is contained in:
2025-12-18 09:11:47 +01:00
co-authored by Claude Sonnet 4.5
parent 571c381718
commit 30a380cae8
48 changed files with 9038 additions and 20 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'export', // Statischer Export aktivieren
images: {
unoptimized: true, // Next.js Image Optimierung deaktivieren (für statischen Export nötig)
},
};
export default nextConfig;