diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..488267d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Zenit Studios – Influencer Marketing & Content Produktion", + description: "Zenit Studios verbindet Marken mit passgenauen Influencern und produziert hochwertigen Social Media Content. Performance-fokussierte Kampagnen für Deutschland, Österreich & Schweiz.", + keywords: "Influencer Marketing, Content Produktion, Social Media Kampagnen, Creator, TikTok, Instagram, YouTube", + metadataBase: new URL("https://zenit-studios.de"), + alternates: { + canonical: "https://zenit-studios.de", + }, + openGraph: { + title: "Zenit Studios – Influencer Marketing & Content Produktion", + description: "Zenit Studios verbindet Marken mit passgenauen Influencern und produziert hochwertigen Social Media Content für maximale Reichweite und Performance.", + url: "https://zenit-studios.de", + siteName: "Zenit Studios", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AlIsq5qiq4IfbtootdlaBu0XEA/a-dynamic-showcase-of-tiktok-instagram-a-1773169897193-fbc73083.png", + alt: "Zenit Studios – Influencer Marketing & Content Produktion", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Zenit Studios – Influencer Marketing & Content Produktion", + description: "Zenit Studios: Dein Partner für erfolgreiche Influencer Marketing Kampagnen und professionelle Social Media Content Produktion.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AlIsq5qiq4IfbtootdlaBu0XEA/a-dynamic-showcase-of-tiktok-instagram-a-1773169897193-fbc73083.png"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}