const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL || "https://poyrazavsever.com"; export type PersonJsonLdProps = { name: string; url?: string; image?: string; jobTitle?: string; sameAs?: string[]; }; export function PersonJsonLd({ name, url = SITE_URL, image = `${SITE_URL}/logo/logo.png`, jobTitle = "Fullstack Developer", sameAs = [], }: PersonJsonLdProps) { const data = { "@context": "https://schema.org", "@type": "Person", name, url, image, jobTitle, sameAs, }; return (