feat: rewrite site as Next.js 14 portfolio with terminal aesthetic

Replaces Hugo site with a Next.js App Router (TypeScript) build.
Tailwind CSS custom terminal palette, Framer Motion scroll reveals,
JetBrains Mono font, scanline/vignette overlays, typing animation.
Sections: Hero, Skills, Projects, Contact. Content driven from data/resume.ts.
Deploy workflow updated for static export to gh-pages.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
emil28092005
2026-04-30 04:15:07 +03:00
co-authored by Claude Sonnet 4.6
parent a6ed78c2ca
commit 727996503e
21 changed files with 1392 additions and 445 deletions
+13
View File
@@ -0,0 +1,13 @@
/** @type {import('next').NextConfig} */
const REPO_NAME = 'Emil_Shanayev_Resume'
const nextConfig = {
output: 'export',
basePath: `/${REPO_NAME}`,
assetPrefix: `/${REPO_NAME}`,
images: {
unoptimized: true,
},
}
export default nextConfig