Skip to content

Commit 7eec972

Browse files
committed
Portfolio: lightning effects (lightning.png), content in EN, README in EN, remove Angular app
1 parent af1ca99 commit 7eec972

9 files changed

Lines changed: 434 additions & 390 deletions

File tree

README.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Junot Montpre — Portfolio
2+
3+
[![GitHub Pages](https://img.shields.io/badge/GitHub%20Pages-Live-success?style=flat-square)](https://mpjunot.github.io)
4+
5+
Professional portfolio — Junior Full-Stack developer, 5th year Epitech Paris. Looking for internship, fixed-term or permanent position from March.
6+
7+
---
8+
9+
## 🌐 Site
10+
11+
**[https://mpjunot.github.io](https://mpjunot.github.io)**
12+
13+
---
14+
15+
## 🛠 Tech stack
16+
17+
| Area | Technologies |
18+
| ----------- | -------------------------------------------------- |
19+
| Frontend | React 19, TypeScript, Vite, Tailwind CSS |
20+
| Animations | Framer Motion |
21+
| Hosting | GitHub Pages (CI/CD via GitHub Actions) |
22+
23+
---
24+
25+
## 📁 Repository structure
26+
27+
```
28+
├── portfolio/ # React app (Vite)
29+
│ ├── src/
30+
│ │ ├── App.tsx # Main page
31+
│ │ ├── data.ts # Content (projects, skills, contact)
32+
│ │ └── assets/
33+
│ ├── index.html
34+
│ └── package.json
35+
└── .github/workflows/
36+
└── deploy.yml # Build & deploy to GitHub Pages
37+
```
38+
39+
---
40+
41+
## 🚀 Getting started
42+
43+
**Prerequisites:** Node.js 20+, pnpm
44+
45+
```bash
46+
cd portfolio
47+
pnpm install
48+
pnpm dev
49+
```
50+
51+
[http://localhost:5173](http://localhost:5173)
52+
53+
**Production build:**
54+
55+
```bash
56+
pnpm run build
57+
```
58+
59+
Output: `portfolio/dist/`
60+
61+
---
62+
63+
## 📦 Deployment
64+
65+
Deployment runs automatically on every push to `main`:
66+
67+
1. **Deploy static content to Pages** workflow (`.github/workflows/deploy.yml`)
68+
2. Build in `portfolio/`
69+
3. Upload `portfolio/dist` to GitHub Pages
70+
71+
**Required:**
72+
**Settings → Pages → Build and deployment → Source** = **GitHub Actions**.
73+
74+
---
75+
76+
## 📄 Contact
77+
78+
- **Email:** junot-hery-nantenaina.montpre@epitech.eu
79+
- **LinkedIn:** [linkedin.com/in/junot-montpre](https://www.linkedin.com/in/junot-montpre/)
80+
- **GitHub:** [github.com/mpJunot](https://github.com/mpJunot)
81+
82+
---
83+
84+
© 2025 Junot Montpre — All rights reserved.

portfolio/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!doctype html>
2-
<html lang="fr">
2+
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Junot Montpre — Développeur Full-Stack junior</title>
8-
<meta name="description" content="Développeur Full-Stack junior, 5ᵉ année Epitech Paris. Projets : Epitrello, Adapto, CopyMe. React, TypeScript, Node.js." />
7+
<title>Junot Montpre — Junior Full-Stack Developer</title>
8+
<meta name="description" content="Junior Full-Stack Developer, 5th year at Epitech Paris. Projects: Epitrello, Adapto, CopyMe. React, TypeScript, Node.js." />
99
<link rel="preconnect" href="https://fonts.googleapis.com">
1010
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1111
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap" rel="stylesheet">

0 commit comments

Comments
 (0)