A brutalist editorial developer portfolio template. Built by Akshay Sharma out of curiosity, then made open source so everyone can benefit.
Live demo: lucidakshay.dev
Most portfolio templates are either over engineered with heavy WebGL and complex build steps, or they look like basic corporate brochures. This template takes a different path:
- Zero frameworks: plain HTML, CSS, and JavaScript
- Zero paid plugins: no GSAP Club, no licensed assets required
- Sub 400ms load times: no canvas rendering, pure DOM execution
- Live AI chat: serverless backend integration keeps your API keys secure
- Terminal easter egg: pressing `Ctrl + `` opens a fully functional command line interface
- One config file: edit
config.jsto completely personalize the site in 10 minutes - Instant Deployment: optimized for Vercel serverless edge networks
Click Fork on GitHub to copy the repository to your account. Then clone your fork to your local machine:
git clone https://github.com/YOUR_USERNAME/operator-portfolio.git
cd operator-portfolioOpen the config.js file. This is the central brain of the portfolio. You do not need to touch the HTML to update your resume, projects, or bio. Update your name, links, project details, and SEO metadata directly inside this file.
- Place your profile photo at
./assets/photo.jpg(440×520px recommended) - Place your resume PDF at
./assets/resume.pdf - Replace the Open Graph preview image at
./assets/og-preview.png
This project uses a serverless backend for the AI chat, making Vercel the optimal deployment platform.
npm install -g vercel
vercel --prodThe AI chat requires a completion endpoint. You can use NVIDIA NIM, OpenAI, Anthropic, or any provider. Go to your Vercel Dashboard, select your project, navigate to Settings, and add these Environment Variables:
AI_API_KEY: Your secret provider API keyAI_API_URL: The completion endpoint URL (example:https://integrate.api.nvidia.com/v1/chat/completions)AI_MODEL_ID: The specific model you are calling (example:nvidia/nemotron-3-super-49b-v1)ALLOWED_ORIGIN: Your live domain name to prevent CORS abuse
Important: After adding these variables, you must click Redeploy in Vercel so the backend can access them.
Tracking is built directly into the configuration. You do not need to copy and paste script tags into the HTML document.
- Go to analytics.google.com and create a new Web Data Stream.
- Copy your Measurement ID (it looks like
G-XXXXXXXXXX). - Open
config.jsand paste the ID into thegoogleAnalyticsIdvariable. The site will handle the rest dynamically.
operator-portfolio/
├── index.html ← Main portfolio interface structure
├── style.css ← Core styling and theme tokens
├── script.js ← Interactivity, terminal, and render logic
├── config.js ← ⭐ Edit this file to completely personalize the site
├── api/
│ └── chat.js ← Serverless backend proxy for the AI chat
├── assets/
│ ├── photo.jpg ← Your profile picture
│ ├── resume.pdf ← Your downloadable resume
│ └── og-preview.png ← Social media preview graphic
├── vercel.json ← Vercel deployment configuration
├── README.md
└── LICENSE
If you are new to version control and using VS Code, follow this workflow to update your live site.
First time initialization:
cd path/to/operator-portfolio
git init
git add .
git commit -m "Initial portfolio setup"
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO.git
git branch -M main
git push -u origin mainDaily update workflow:
Whenever you change your config.js to add a new project or update your resume, run these commands to push the updates. Vercel will automatically detect the push and redeploy your site.
git add .
git commit -m "update: added new project to config"
git push| What you want to change | Where to change it |
|---|---|
| Your name, location, and social links | config.js |
| Google Analytics Measurement ID | config.js |
| Projects, Experience, Certs, and Prompts | config.js |
| AI system prompt and context | api/chat.js |
| Color scheme tokens | style.css (inside :root) |
| Core structural layout | index.html |
| Terminal commands and interactivity | script.js (search for CMDS) |
MIT License. You are free to use, modify, and deploy this code for your personal brand.
If this architecture helped you stand out or land a role, consider sponsoring the project to support future open source development.
Built by Akshay Sharma • Senior BI Analyst & AI Application Builder based in Jalandhar, Punjab.