new-personal-site/layouts/main/(data)/shcema.ts
2026-02-23 05:03:38 +01:00

51 lines
1.6 KiB
TypeScript

export const SchemaJSON = {
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://tben.me/#organization",
name: "Tben INC",
url: "https://tben.me/",
logo: {
"@type": "ImageObject",
"@id": "https://tben.me/#logo",
url: "https://tben.me/logo.png",
},
sameAs: ["https://www.linkedin.com/in/benjamin-toby/"],
},
{
"@type": "WebSite",
"@id": "https://tben.me/#website",
url: "https://tben.me/",
name: "Tben INC",
publisher: {
"@id": "https://tben.me/#organization",
},
potentialAction: {
"@type": "SearchAction",
target: {
"@type": "EntryPoint",
urlTemplate:
"https://tben.me/search?q={search_term_string}",
},
"query-input": "required name=search_term_string",
},
},
{
"@type": "Person",
"@id": "https://tben.me/#benjamin-toby",
name: "Benjamin Toby",
url: "https://tben.me/",
email: "mailto:ben@tben.me",
sameAs: [
"https://www.linkedin.com/in/benjamin-toby/",
"https://git.tben.me/tben",
],
worksFor: {
"@id": "https://tben.me/#organization",
},
jobTitle: "Founder",
},
],
};