Skip to content

Commit 9abfc10

Browse files
authored
JFRA-00: Update README.md
1 parent 661fd8b commit 9abfc10

File tree

1 file changed

+24
-23
lines changed

1 file changed

+24
-23
lines changed

README.md

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Juan Felipe Rada - Portfolio
22

3-
A modern and responsive portfolio website built with Astro, showcasing my work as a software developer. The site features multiple language support (English, Spanish, and Portuguese), a contact form, and sections highlighting my skills and projects.
3+
This is my personal portfolio website built with Astro, showcasing my work as a software developer, and also hosting my blog. It supports i18n (English, Spanish, and Portuguese), a contact form, y career path and some personal projects projects.
44

55
![Portfolio Preview](https://github.com/Radapls/radapls.github.io/blob/main/public/portfolio-preview.png)
66

@@ -11,36 +11,37 @@ A modern and responsive portfolio website built with Astro, showcasing my work a
1111
- Contact form integration
1212
- Dark/Light theme toggle
1313
- Project showcase
14-
- Skills section
15-
- About me section
14+
- Experience path
15+
- E2E Test
1616

1717
## 🛠️ Tech Stack
1818

1919
- [Astro](https://astro.build)
2020
- CSS3
21-
- TypeScript
21+
- [TypeScript](https://www.typescriptlang.org/)
22+
- [MDX](https://mdxjs.com/)
23+
- [Cypress](https://www.cypress.io/)
2224

2325
## 🏗️ Project Structure
2426

2527
```text
2628
/
27-
src
28-
├── assets
29-
│   ├── documents
30-
│   ├── gifs
31-
│   ├── img
32-
│   │   ├── birdi
33-
│   │   ├── brands
34-
│   │   └── wibx
35-
│   └── videos
36-
├── components
37-
│   └── i18n
38-
├── data
39-
├── layouts
40-
├── pages
41-
│   └── [lang]
42-
├── scripts
43-
├── sections
44-
├── styles
45-
└── types
29+
├── src
30+
│ ├── assets # Astro-managed assets (e.g., blog post images if optimized by Astro)
31+
│ │   ├── documents
32+
│ │   ├── gifs
33+
│ │   ├── img
34+
│ │   └── videos
35+
│ ├── components # Base components
36+
│ │   └── i18n
37+
│ ├── data # All the global variables must be here
38+
│ ├── layouts
39+
│ ├── pages # Astro pages and routes (e.g., index.astro, about.astro)
40+
│ │   └── [lang]
41+
│ ├── scripts # Global scripts
42+
│ ├── sections # Reusable sections
43+
│ ├── styles # Global styles
44+
│ └── types # Global types
45+
├── astro.config.mjs # Astro configuration
46+
└── package.json # Project dependencies and scripts
4647
```

0 commit comments

Comments
 (0)