export function ProfilePage({ content }) { const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || "https://robertseares.com"; const pageUrl = new URL(content.locale === "pt" ? "/pt/" : "/", siteUrl).toString(); const jsonLd = { "@context": "https://schema.org", "@graph": [ { "@type": "Person", "@id": `${siteUrl}/#person`, name: "Robert Seares", url: siteUrl, jobTitle: [ content.locale === "pt" ? "Engenheiro de software" : "Software Engineer", content.locale === "pt" ? "Lider de engenharia" : "Engineering Leader", "Founder", content.locale === "pt" ? "Builder de produto" : "Product Builder", ], homeLocation: { "@type": "Place", name: "Sao Paulo, Brazil", }, worksFor: { "@type": "Organization", name: "Ark Biotech", }, knowsAbout: [ "Artificial Intelligence", "Biotechnology", "Cloud Infrastructure", "Distributed Systems", "Developer Platforms", "Product Engineering", "Automation", "Python", "TypeScript", "Kubernetes", "FastAPI", "React", "PostgreSQL", ], knowsLanguage: ["English", "Portuguese"], description: content.hero.intro, }, { "@type": "WebSite", "@id": `${siteUrl}/#website`, name: "Robert Seares", url: siteUrl, inLanguage: ["en", "pt-BR"], publisher: { "@id": `${siteUrl}/#person`, }, }, { "@type": "ProfilePage", "@id": `${pageUrl}#webpage`, url: pageUrl, name: content.hero.title, headline: content.hero.lede, description: content.hero.intro, inLanguage: content.htmlLang, isPartOf: { "@id": `${siteUrl}/#website`, }, about: { "@id": `${siteUrl}/#person`, }, }, ], }; return (