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: "Edgetabs | Performance Supplement for Energy & Focus", description: "Unlock your edge with Edgetabs—clinically-dosed energy and focus supplements. Trusted by 2,000+ athletes. Fast shipping, 30-day guarantee.", keywords: "energy supplement, focus supplement, nootropic, sports supplement, performance enhancement", metadataBase: new URL("https://edgetabs.com"), alternates: { canonical: "https://edgetabs.com" }, openGraph: { title: "Edgetabs | Get Your Edge", description: "Clinically-dosed performance supplement for energy, focus, and results. Rated 4.8★ by 2,000+ customers.", url: "https://edgetabs.com", siteName: "Edgetabs", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767548546571-39ecp4cp.jpg", alt: "Edgetabs supplement product" }] }, twitter: { card: "summary_large_image", title: "Edgetabs | Pure Energy. Pure Focus.", description: "Trusted by 2,000+ athletes for clean, sustained performance. Try Edgetabs risk-free.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767548546571-39ecp4cp.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}