A modern, dark‑mode friendly, developer‑focused portfolio built with React, Vite, Tailwind CSS, and Framer Motion.
It showcases my work across backend, systems, mobile, and web engineering, plus open‑source contributions (OWASP ZAP, Haiku OS, CERN ROOT).
This repo contains the source for my personal portfolio.
The site is intentionally minimal, fast, and code‑centric:
- Sidebar + content layout on desktop, single‑column on mobile.
- Dark/light theme with system + local‑storage preference.
- Framer Motion animations with subtle motion (no flashy effects).
- Projects highlighting data‑heavy/backend work and real systems projects.
- Experience including education, open source, and freelance engineering.
Sections:
Hero– intro, photo, social links, resume download.About– background, interests, and long‑term goals.Skills– languages, backend/systems, tools, and research directions.Projects– backend, systems, mobile, and mini‑projects.Experience– education, open source, freelance work.Contact– email/social links + mailto contact form.
| Area | Tech |
|---|---|
| Framework | React 18 |
| Build | Vite |
| Styling | Tailwind CSS |
| Animation | Framer Motion |
| Icons | Lucide React |
| Package | npm |
- Node.js ≥ 18 recommended
- npm (comes with Node)
git clone https://github.com/<your-username>/Portfolio.git
cd Portfolio
npm installnpm run devVite will print a local URL (usually http://localhost:5173). Open it in your browser.
To create an optimized build:
npm run buildThe output goes to the dist/ folder.
You can preview the production build locally:
npm run previewYou can deploy the built dist/ folder almost anywhere (GitHub Pages, Vercel, Netlify, etc.).
One common approach with Vite is:
-
Build the project:
npm run build
-
Push the repo to GitHub:
git add . git commit -m "Initial portfolio" git push origin main
-
Use a GitHub Pages workflow (or a tool like
vite-plugin-gh-pages) to publish thedist/folder to thegh-pagesbranch.
If you prefer, you can also host thedistoutput on Vercel or Netlify by connecting the repo and setting:- Build command:
npm run build - Output directory:
dist
- Build command:
src/
main.jsx # Vite/React entry
App.jsx # Layout, theme + navigation
index.css # Tailwind base + custom utility classes
components/
Hero.jsx
About.jsx
Skills.jsx
Projects.jsx
Experience.jsx
Contact.jsx
public/
assets/
me.png
Abdullah-Zulfiqar-resume.pdf
This project already includes a .gitignore that ignores:
node_modules/- build artifacts (
dist/,dist-ssr/) - log files (
*.log, tool debug logs) - editor/IDE config (
.vscode/,.idea/, etc.)
That is enough for pushing this Vite/React project safely to GitHub.
If something here is broken or you want to collaborate:
- Email:
abdullahzulfiqar580@gmail.com - GitHub:
https://github.com/AbdullahZulfiqar2005 - LinkedIn:
https://www.linkedin.com/in/abdullah-zulfiqar-7a4240287
Feel free to open an issue or a pull request if you spot improvements.
This portfolio is meant to evolve as my work and interests do.