diff --git a/app/[lang]/layout.tsx b/app/[lang]/layout.tsx index dccee77..e4b7d11 100644 --- a/app/[lang]/layout.tsx +++ b/app/[lang]/layout.tsx @@ -22,9 +22,53 @@ const ibmPlexMono = IBM_Plex_Mono({ }); export const metadata: Metadata = { + metadataBase: new URL('https://ayris.tech'), title: "Ayris Tech | Forging the Future with AI & Blockchain", description: "Ayris Tech delivers enterprise-grade digital transformation. We build the impossible for the next generation of business using AI, Blockchain, and modern web technologies.", keywords: ["AI Solutions", "Blockchain Development", "Mobile App", "Web Development", "Digital Transformation"], + openGraph: { + title: "Ayris Tech | Forging the Future with AI & Blockchain", + description: "Ayris Tech delivers enterprise-grade digital transformation. We build the impossible for the next generation of business using AI, Blockchain, and modern web technologies.", + url: 'https://ayris.tech', + siteName: 'Ayris Tech', + images: [ + { + url: '/og-image.jpg', + width: 1200, + height: 630, + alt: 'Ayris Tech - AI & Blockchain Solutions' + } + ], + locale: 'en_US', + type: 'website', + }, + twitter: { + card: 'summary_large_image', + title: "Ayris Tech | Forging the Future with AI & Blockchain", + description: "Ayris Tech delivers enterprise-grade digital transformation.", + images: ['/og-image.jpg'], + }, + alternates: { + canonical: '/', + languages: { + 'en': '/en', + 'tr': '/tr', + }, + }, +}; + +const jsonLd = { + '@context': 'https://schema.org', + '@type': 'Organization', + name: 'Ayris Tech', + url: 'https://ayris.tech', + logo: 'https://ayris.tech/logo.png', // Update with actual logo URL if available + description: 'Ayris Tech delivers enterprise-grade digital transformation using AI, Blockchain, and modern web technologies.', + address: { + '@type': 'PostalAddress', + addressLocality: 'Muğla', + addressCountry: 'TR' + } }; export async function generateStaticParams() { @@ -41,6 +85,12 @@ export default async function RootLayout({ const { lang } = await params; return ( + +