From 129eec1ce87d37384be1cdb7ccd425bd07df6c75 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:34:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 37 ++++++++++++++----------------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2154f5d..0d6b328 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,41 +1,32 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; +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"], + 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: { + 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: [ + 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", - }, + 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", - ], + 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"], }, }; @@ -47,7 +38,7 @@ export default function RootLayout({ return ( - + {children} @@ -1421,4 +1412,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}