import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "NewsHub - Premium Newsletter for Curated Insights", description: "Stay informed with NewsHub's weekly curated newsletter. Get exclusive insights, industry trends, and thoughtful analysis delivered to your inbox. Subscribe free today.", keywords: ["newsletter", "curated content", "insights", "industry trends", "email subscription"], robots: { index: true, follow: true, }, openGraph: { title: "NewsHub - Curated Stories & Insights", description: "Discover premium insights and industry trends curated just for you. Subscribe to NewsHub's weekly newsletter.", type: "website", siteName: "NewsHub", images: [ { url: "https://img.b2bpic.net/free-vector/computer-with-social-profile-social-community_24877-53905.jpg", alt: "NewsHub Newsletter Platform" }, ], }, twitter: { card: "summary_large_image", title: "NewsHub - Curated Insights Newsletter", description: "Join thousands discovering quality content. Subscribe to NewsHub's premium newsletter.", images: ["https://img.b2bpic.net/free-vector/computer-with-social-profile-social-community_24877-53905.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}