import type { Metadata } from "next"; import { Roboto } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Talk Street Media | Authentic Street Interview Advertising", description: "Real voices, real stories, real impact. Transform your brand with authentic street interview advertising that connects with genuine audiences.", keywords: "street interview advertising, authentic marketing, branded content, social media campaigns, documentary advertising", metadataBase: new URL("https://talkstreetmedia.com"), alternates: { canonical: "https://talkstreetmedia.com" }, openGraph: { title: "Talk Street Media", description: "Real voices, real stories, real impact. Authentic street interview advertising for modern brands.", url: "https://talkstreetmedia.com", siteName: "Talk Street Media", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/group-people-doing-journalism-interview_23-2149032434.jpg", alt: "Talk Street Media - Real street interviews for authentic advertising" } ] }, twitter: { card: "summary_large_image", title: "Talk Street Media", description: "Authentic street interview advertising that connects with real audiences.", images: ["http://img.b2bpic.net/free-photo/group-people-doing-journalism-interview_23-2149032434.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}