From 003c02989fc961e82a5df4e630b09dbde7505ad4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:24:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c027d5..1d966a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}