Update src/app/layout.tsx

This commit is contained in:
2026-03-04 13:24:38 +00:00
parent c31e2fb3a5
commit 003c02989f

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "GymFlow AI - Automate Gym Lead Generation & Conversions",
description: "AI-powered lead capture and WhatsApp automation for gyms. Convert prospects 24/7, automate follow-ups, and grow your gym faster. Start your free trial today.",
keywords: "gym lead generation, fitness automation, gym CRM, WhatsApp automation, member acquisition",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "GymFlow AI - Grow Your Gym Faster",
description: "Automate lead capture, WhatsApp responses, and member conversions with AI. Join 500+ gyms growing faster.",
url: "https://gymflow.ai",
siteName: "GymFlow AI",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATmCikdvK20y8Xl8LJD3dCyQ3r/a-high-energy-gym-environment-with-multi-1772628733088-e09af507.jpg",
alt: "GymFlow AI - Gym Lead Generation Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "GymFlow AI - Automate Gym Lead Generation",
description: "AI-powered platform that converts gym leads 24/7 with WhatsApp automation",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATmCikdvK20y8Xl8LJD3dCyQ3r/a-high-energy-gym-environment-with-multi-1772628733088-e09af507.jpg"],
},
};
title: "GymFlow AI - AI Automation for Gyms", description: "Automate lead capture, WhatsApp responses, and member conversion with AI. Grow your gym faster."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}