39 lines
996 B
TypeScript
39 lines
996 B
TypeScript
export const site = {
|
|
origin: "https://fossy.my.id",
|
|
url: "https://fossy.my.id/",
|
|
name: "Bagas Aulia Rezki",
|
|
title: "Bagas Aulia Rezki | Backend, DevOps & Full-Stack Developer",
|
|
description:
|
|
"Portfolio of Bagas Aulia Rezki, a Full-Stack and Backend Developer building Go services, DevOps infrastructure, automation, and self-hosted systems.",
|
|
} as const
|
|
|
|
export const homepageJsonLd = {
|
|
"@context": "https://schema.org",
|
|
"@graph": [
|
|
{
|
|
"@type": "WebSite",
|
|
"@id": `${site.origin}/#website`,
|
|
url: site.url,
|
|
name: site.name,
|
|
},
|
|
{
|
|
"@type": "ProfilePage",
|
|
"@id": `${site.origin}/#profile`,
|
|
url: site.url,
|
|
mainEntity: {
|
|
"@id": `${site.origin}/#person`,
|
|
},
|
|
},
|
|
{
|
|
"@type": "Person",
|
|
"@id": `${site.origin}/#person`,
|
|
name: site.name,
|
|
url: site.url,
|
|
sameAs: [
|
|
"https://github.com/fossyy",
|
|
"https://www.linkedin.com/in/bagas-aulia-rezki/",
|
|
],
|
|
},
|
|
],
|
|
}
|