Update src/app/layout.tsx

This commit is contained in:
2026-03-04 09:38:39 +00:00
parent 986894b1bd
commit eb899a4b0a

View File

@@ -1,60 +1,22 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "WarRoom Automations | AI Receptionist System for Local Businesses", description: "Stop losing revenue to missed calls. AI receptionist & automation system for dental, salons, gyms, real estate. Capture every lead, book 24/7, eliminate admin chaos.", keywords: "AI receptionist, call automation, lead capture, revenue automation, local business automation, dental software, salon software", metadataBase: new URL("https://warroomautomations.com"),
alternates: {
canonical: "https://warroomautomations.com"
},
openGraph: {
title: "WarRoom Automations | AI Receptionist for Local Businesses", description: "Stop losing revenue to missed calls. We install AI systems that capture every lead, answer 24/7, and eliminate manual admin work. Results in 30 days or less.", url: "https://warroomautomations.com", siteName: "WarRoom Automations", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATVW4VOPvoQVq0dBRjfPhyrtSL/a-dark-command-center-dashboard-interfac-1772616667057-2f3e3b91.png", alt: "WarRoom Automations AI Command Center"
}
]
},
twitter: {
card: "summary_large_image", title: "WarRoom Automations | AI Receptionist System", description: "Stop losing revenue to missed calls. AI system captures every lead, books 24/7.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATVW4VOPvoQVq0dBRjfPhyrtSL/a-dark-command-center-dashboard-interfac-1772616667057-2f3e3b91.png"]
},
robots: {
index: true,
follow: true
}
};
title: "WarRoom Automations - AI Revenue Infrastructure", description: "AI-powered revenue infrastructure for local businesses. Stop losing leads. Capture every call, automate follow-ups, close more deals."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}