import type { Metadata } from "next"; import { IBM_Plex_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const ibmPlexSans = IBM_Plex_Sans({ variable: "--font-ibm-plex-sans", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "BASE Speaker - Premium High-End Audio Experience", description: "Experience the future of premium audio with BASE speakers featuring Quantum Acoustic Processor technology. Ultra high-end futuristic design with interactive showcase.", keywords: "premium speakers, high-end audio, luxury sound system, audio technology, professional speakers", robots: { index: true, follow: true }, openGraph: { title: "BASE Speaker - Next Generation Audio", description: "Revolutionary premium audio technology redefining sound quality", siteName: "BASE Audio", type: "website" }, twitter: { card: "summary_large_image", title: "BASE Speaker - Premium Audio Experience" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}