This commit is contained in:
2026-01-22 12:22:36 +01:00
parent d8c1e020f2
commit cf79f467e2
+68 -13
View File
@@ -10,19 +10,74 @@ const { title, description } = Astro.props;
const schema = JSON.stringify({ const schema = JSON.stringify({
"@context": "https://schema.org", "@context": "https://schema.org",
"@type": "Person", "@graph": [
name: "Albert", {
alternateName: "skidoodle", "@type": "ProfilePage",
url: "https://albert.lol/", "@id": "https://albert.lol/#webpage",
image: "https://albert.lol/static/preview.png", "url": "https://albert.lol/",
jobTitle: "Developer and Tech Enthusiast", "lastReviewed": new Date().toISOString().split("T")[0],
description: description, "mainEntity": {
knowsAbout: ["Web Development", "TypeScript", "Go", "Homelab", "Linux", "Open Source Projects"], "@id": "https://albert.lol/#person",
sameAs: ["https://github.com/skidoodle", "https://steamcommunity.com/id/_albert", "https://discord.com/users/637745537369767936"], },
worksFor: { },
"@type": "Organization", {
name: "Personal Projects / Open Source", "@type": "Person",
}, "@id": "https://albert.lol/#person",
"name": "albert",
"alternateName": "skidoodle",
"url": "https://albert.lol/",
"image": {
"@type": "ImageObject",
"url": "https://albert.lol/static/preview.png",
"caption": "albert",
},
"jobTitle": "Developer and Tech Enthusiast",
"description": description,
"sameAs": "https://github.com/skidoodle",
"knowsAbout": [
{
"@type": "Thing",
"name": "TypeScript",
"sameAs": "https://www.wikidata.org/wiki/Q978185",
},
{
"@type": "Thing",
"name": "Go",
"sameAs": "https://www.wikidata.org/wiki/Q37227",
},
{
"@type": "Thing",
"name": "Linux",
"sameAs": "https://www.wikidata.org/wiki/Q388",
},
{
"@type": "Thing",
"name": "Web Development",
"sameAs": "https://www.wikidata.org/wiki/Q386275",
},
{
"@type": "Thing",
"name": "DevOps",
"sameAs": "https://www.wikidata.org/wiki/Q3025536",
},
{
"@type": "Thing",
"name": "Homelab",
"sameAs": "https://www.wikidata.org/wiki/Q750110",
},
{
"@type": "Thing",
"name": "Open Source",
"sameAs": "https://www.wikidata.org/wiki/Q39162",
},
{
"@type": "Thing",
"name": "Technology",
"sameAs": "https://www.wikidata.org/wiki/Q11016",
},
],
},
],
}); });
--- ---