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: "Linear | Sales Dashboard for Modern Teams", description: "Real-time sales dashboard with AI insights, pipeline management, and team collaboration. Trusted by 500K+ sales professionals. Start your free trial today.", keywords: "sales dashboard, CRM alternative, pipeline management, sales analytics, revenue forecasting", robots: { index: true, follow: true }, openGraph: { title: "Linear | Sales Dashboard for Modern Teams", description: "Real-time sales dashboard with AI insights, pipeline management, and team collaboration. Trusted by 500K+ sales professionals.", type: "website", siteName: "Linear", images: [{ url: "https://img.b2bpic.net/free-vector/user-panel-template-infographic-dashboard_23-2148378206.jpg", alt: "Linear Sales Dashboard" }] }, twitter: { card: "summary_large_image", title: "Linear | Sales Dashboard for Modern Teams", description: "Real-time sales dashboard with AI insights, pipeline management, and team collaboration.", images: ["https://img.b2bpic.net/free-vector/user-panel-template-infographic-dashboard_23-2148378206.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}