import type { Metadata } from "next"; import { Playfair_Display, Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const playfairDisplay = Playfair_Display({ variable: "--font-playfair-display", subsets: ["latin"], weight: ["400", "500", "600", "700", "800", "900"], }); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Romèra | AI Automation for Appointment Bookings", description: "Turn missed calls into booked appointments with AI automation. 24/7 customer communication, intelligent booking, and lead capture for local service businesses.", keywords: "AI automation, appointment booking, lead capture, customer communication, dental, salons, restaurants, real estate automation", robots: { index: true, follow: true, }, openGraph: { title: "Romèra - AI Automation for Appointment Bookings", description: "Stop losing appointments. Automate calls, bookings, and reminders with AI. Perfect for dentists, salons, restaurants, and local services.", siteName: "Romèra", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQa0XDiPrZb0VqVlNL1FosFpos/a-sleek-modern-ai-automation-dashboard-i-1772616014011-f54bc382.png", alt: "Romèra AI Automation Dashboard"}, ], }, twitter: { card: "summary_large_image", title: "Romèra - AI Automation for Appointment Bookings", description: "Turn missed calls into booked appointments. 24/7 AI automation for local service businesses.", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQa0XDiPrZb0VqVlNL1FosFpos/a-sleek-modern-ai-automation-dashboard-i-1772616014011-f54bc382.png"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}