A futuristic developer portfolio built with Next.js 13, Tailwind CSS, and TypeScript, wrapped in a cyberpunk/hacker aesthetic.
Includes matrix rain, holographic cards, particle systems, interactive terminals, glitch overlays, and ASCII effects for a truly immersive developer showcase.
This project is fully Dockerized with support for Nginx reverse proxy and multi-stage builds for production.
- Introduction
- Screenshots & Preview
- Features
- Tech Stack
- Project Structure
- Installation
- Local Development
- Docker Setup
- Production Deployment
- Configuration
- Usage Guide
- Terminal Commands
- Troubleshooting
- Contributors
- License
This isn’t just a portfolio — it’s an experience.
Designed to impress recruiters, employers, and tech enthusiasts, this portfolio combines cutting-edge frontend development with immersive visuals.
Highlights:
- Built with Next.js App Router for modern React patterns.
- Designed with Tailwind CSS for rapid, utility-first styling.
- Powered by Docker + Nginx for simple deployment anywhere.
- Packed with easter eggs like the Konami Code.
You can go to this link and see it for yourself.
- 🎨 Cyberpunk UI – glitch overlays, holographic cards, neon glowing effects.
- 💻 Interactive Hacker Terminal – run commands like
help,projects,skills,about. - 🌌 Matrix Rain + Binary Effects – animated hacker-style backgrounds.
- 📊 Skills & Achievements Sections – animated orbs, holographic skill cards.
- 🔧 Reusable React Components – modular design for easy extension.
- 🐳 Docker Support – production-ready, with
nginxas a reverse proxy. - 📱 Responsive Design – works seamlessly on mobile and desktop.
- 🎭 Theme Provider – switch themes dynamically (light, dark, cyberpunk).
- 🕹 Easter Eggs – hidden Konami Code triggers special animations.
- Framework: Next.js 13
- Language: TypeScript
- Styling: Tailwind CSS, PostCSS
- Package Manager: pnpm (recommended) / npm / yarn
- Deployment: Docker, Docker Compose, Nginx
portfolio\_v2/
│── app/ # Next.js App Router pages
│ ├── layout.tsx
│ ├── page.tsx
│ ├── globals.css
│ └── terminal/
│ └── page.tsx
│
│── components/ # UI components (glitch, holographic, particles, etc.)
│ ├── theme-provider.tsx
│ ├── hacker-terminal.tsx
│ ├── matrix-rain.tsx
│ ├── holographic-card.tsx
│ ├── glitch-overlay.tsx
│ ├── particle-field.tsx
│ ├── projects-section.tsx
│ ├── skills-section.tsx
│ ├── experience-section.tsx
│ ├── achievements-section.tsx
│ └── ...
│
│── Dockerfile # Multi-stage build for Next.js
│── docker-compose.yml # Orchestration (app + nginx)
│── nginx.conf # Reverse proxy + caching + headers
│── package.json
│── tailwind.config.ts
│── tsconfig.json
│── postcss.config.mjs
│── .dockerignore
│── .gitignore
│── README.md
git clone https://github.com/yourusername/portfolio_v2.git
cd portfolio_v2/portfolio_v2pnpm install(Or use npm install / yarn install)
pnpm dev- App runs on: http://localhost:3000
- Hot reload enabled.
pnpm build
pnpm start- Docker & Docker Compose installed
pnpminstalled locally (optional, only if you want to build outside Docker)
docker-compose up --buildRun detached mode:
docker-compose up -d --buildLogs:
docker-compose logs -f nextjs-appdocker build -t portfolio_v2 .
docker run -p 3000:3000 portfolio_v2docker-compose --profile production up -d --buildThis will:
- Run Next.js app on port 3000 (internal)
- Serve via Nginx on ports 80/443
- Apply caching, headers, and rate limiting
Create a .env in project root:
NODE_ENV=production
NEXT_TELEMETRY_DISABLED=1
# Add custom environment variables heretailwind.config.ts→ Customize animations, themes, color palettenginx.conf→ Control caching, headers, reverse proxy settingstsconfig.json→ TypeScript compiler options.env→ Deployment-specific variables (API keys, analytics, etc.)
The portfolio includes several interactive sections:
- Landing Page – animated introduction, holographic cards
- Projects Section – clickable demos and code snippets
- Skills Section – glowing orbs with interactive animations
- Achievements – holographic achievements cards
- Experience – styled timeline of job history
- Terminal Mode – run commands (
help,about,skills, etc.) - Konami Code – discover hidden Easter eggs
Inside /terminal page:
help→ Shows available commandsabout→ Info about youskills→ Displays skills as ASCII/animated orbsprojects→ Lists portfolio projectscontact→ Shows contact informationclear→ Clears terminal output
-
App doesn’t start in Docker? Ensure
next.config.mjshas standalone mode enabled. -
Nginx not serving files? Verify
nginx.confpoints to.next/standalone. -
Styles not applied? Check Tailwind config paths in
tailwind.config.ts. -
Konami code doesn’t work? Ensure
konami-provider.tsxis properly wrapped in layout.