import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brain Freedom: Evidence Against Invasive Neurolink Technology", description: "Science-based investigation into ethical, security, and privacy risks of invasive neural implants. Expert perspectives on cognitive liberty and human autonomy.", keywords: ["neurolink", "neural implants", "cognitive liberty", "brain computer interface", "ethics", "neuroscience", "privacy"], metadataBase: new URL("https://brainfreedom.org"), alternates: { canonical: "https://brainfreedom.org" }, robots: { index: true, follow: true }, openGraph: { title: "Brain Freedom Initiative", description: "Evidence-based research on why invasive neurolink technology threatens human autonomy", type: "website", siteName: "Brain Freedom Initiative", images: [{ url: "https://img.b2bpic.net/free-photo/front-view-young-man-dabbing-with-electronic-robot_140725-34736.jpg", alt: "Brain autonomy and human freedom" }] }, twitter: { card: "summary_large_image", title: "Brain Freedom: Against Invasive Neurolink Technology", description: "Science-based opposition to invasive neural implants", images: ["https://img.b2bpic.net/free-photo/front-view-young-man-dabbing-with-electronic-robot_140725-34736.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}