Personal portfolio and blog site at edgarmejia.com, built with Astro 5.
- Astro 5 β static site generator
- Tailwind CSS 4 β styling via Vite plugin
- Preact β interactive components
- MDX β blog posts with component support
- i18n β English (default) and Spanish (
/es/...)
/
βββ public/ # Static assets, favicon, fonts, images
βββ src/
βββ components/ # Header, Footer, Head, YouTube
βββ content/
β βββ blog/
β βββ en/ # English posts
β βββ es/ # Spanish posts
βββ i18n/ # UI translations
βββ layouts/ # Layout.astro, BlogPost.astro
βββ pages/ # Routes (/, /blog, /es/blog, ...)
βββ styles/ # global.css
| Command | Action |
|---|---|
npm install |
Install dependencies |
npm run dev |
Start dev server at localhost:4321 |
npm run build |
Build for production to ./dist/ |
npm run preview |
Preview the production build locally |