Ein elegantes, modernes Portfolio für Filmemacher, 3D-Künstler, Fotografen und Sound Designer – inspiriert vom Design des New Yorker Magazins.
npm install
npm run dev
Öffne http://localhost:3000 in deinem Browser.
npm run build
npm start
npm run export
├── app/
│ ├── layout.tsx # Root Layout
│ ├── page.tsx # Home Page
│ ├── globals.css # Global Styles
│ ├── about/
│ │ └── page.tsx
│ ├── work/
│ │ └── page.tsx
│ └── contact/
│ └── page.tsx
├── components/
│ ├── Navigation.tsx
│ ├── Footer.tsx
│ ├── ProjectCard.tsx
│ └── SectionHeadline.tsx
├── package.json
├── next.config.js
├── tailwind.config.js
└── tsconfig.json
Passe die Farben in tailwind.config.js an:
colors: {
cream: '#FAF9F6',
'dark-black': '#1A1A1A',
'warm-gold': '#D4AF37',
// ...
}
Bearbeite die projects Array in app/work/page.tsx:
const projects = [
{
id: 1,
title: 'Dein Projekt',
category: 'video',
description: 'Beschreibung...',
tags: ['Tag1', 'Tag2'],
image: 'URL...'
},
// ...
]
Aktualisiere die Links in components/Footer.tsx und app/contact/page.tsx:
<a href="https://youtube.com/@yourname" target="_blank">
<FiYoutube />
</a>
Die Contact Form in app/contact/page.tsx braucht eine Backend-Integration. Du kannst z.B. Formspree, Netlify Forms, oder EmailJS nutzen.
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/YOUR_USERNAME/portfolio.git
git branch -M main
git push -u origin main
gh-pages, Folder: / (root)Custom domain und trage maxwittwer.de ein.CNAME-Datei für dich.Erstelle .github/workflows/deploy.yml:
name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm run build
- run: npm run export
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: $
publish_dir: ./docs
publish_branch: gh-pages
cname: maxwittwer.de
Dein Projekt. Verwende es frei.
Viel Erfolg mit deinem Portfolio! 🎬✨
Fragen? Öffne ein Issue oder kontaktiere mich direkt.