feat: recover portfolio pages from scratch workspaces

- Add base layouts (BaseLayout, BlogLayout, ProjectLayout)
- Add UI components (Header, Footer, Navigation, Card, Tag)
- Add About page with personal story
- Add Projects pages (index, detail)
- Add homepage content
- Add SEO files (robots.txt, webmanifest)

Work was done by agents in isolated workspaces.
Consolidated into main repo for proper git tracking.
This commit is contained in:
wh-leader
2026-05-11 07:41:22 +02:00
parent 85143c0b05
commit 05036766e4
16 changed files with 638 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Placeholder for favicon - use favicon.io or other generator to create a comprehensive favicon set.
+1
View File
@@ -0,0 +1 @@
Placeholder for avatar - replace with real photo
+1
View File
@@ -0,0 +1 @@
Placeholder for OG image - replace with a 1200x630px image
+8
View File
@@ -0,0 +1,8 @@
User-agent: *
Allow: /
Sitemap: https://davidaragon.impresion3d.pro/sitemap-index.xml
# Disallow admin/private areas (if any)
Disallow: /admin/
Disallow: /api/
+21
View File
@@ -0,0 +1,21 @@
{
"name": "David Aragón - Indie Builder",
"short_name": "DA Portfolio",
"description": "Portfolio personal y blog de indie builder español",
"start_url": "/",
"display": "standalone",
"background_color": "#0a0e27",
"theme_color": "#60a5fa",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}