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:
@@ -0,0 +1,34 @@
|
||||
---
|
||||
const blogPostJsonLd = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BlogPosting",
|
||||
"headline": "{title}",
|
||||
"description": "{description}",
|
||||
"image": "{socialImage}",
|
||||
"datePublished": "{publishDate}",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "David Aragón",
|
||||
"url": "https://davidaragon.impresion3d.pro"
|
||||
},
|
||||
"publisher": {
|
||||
"@type": "Person",
|
||||
"name": "David Aragón",
|
||||
"url": "https://davidaragon.impresion3d.pro"
|
||||
},
|
||||
"keywords": "{keywords}",
|
||||
"articleSection": "{category}",
|
||||
"inLanguage": "es-ES"
|
||||
};
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
<!-- JSON-LD Blog Structured Data -->
|
||||
<script type="application/ld+json" set:html={JSON.stringify(blogPostJsonLd)} />
|
||||
</head>
|
||||
<body>
|
||||
<!-- Blog content -->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user