A futuristic glassmorphism portfolio built with Python (Flask).
portfolio/
├── app.py ← Flask app + all your data (edit this!)
├── requirements.txt ← Python dependencies
├── .gitignore
├── templates/
│ └── index.html ← HTML template (Jinja2)
└── static/
├── css/
│ └── style.css ← All styles
└── js/
└── main.js ← Animations & interactions
File → Open Folder → select the `portfolio` folder
Terminal → New Terminal (or press Ctrl + `)
python -m venv venvWindows:
venv\Scripts\activateMac / Linux:
source venv/bin/activateYou should see (venv) in your terminal prompt.
pip install -r requirements.txtpython app.pyhttp://localhost:5000
Open app.py and edit the PORTFOLIO dictionary at the top:
| Field | What to change |
|---|---|
name |
Your full name |
role |
Your job title |
tagline |
Short intro line |
email |
Your email address |
github |
Your GitHub profile URL |
linkedin |
Your LinkedIn profile URL |
stats |
Numbers like years exp, projects, etc. |
about |
Your bio paragraph |
skills |
Your skills with icon + level (0–100) |
tools |
Extra tools shown as pills |
projects |
Your projects (title, desc, tags, link) |