Update src/app/layout.tsx

This commit is contained in:
2026-03-04 09:34:53 +00:00
parent 1a6dff37a7
commit 129eec1ce8

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${playfairDisplay.variable} ${sourceSans3.variable} antialiased`}>
<Tag />
{children}
@@ -1421,4 +1412,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}