Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 13:24:43 +00:00
2 changed files with 12 additions and 48 deletions

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>
);
}
}

View File

@@ -178,7 +178,7 @@ export default function HomePage() {
{ text: "Learn More", href: "#" },
],
features: [
"Up to 50 new leads/month", "WhatsApp automation", "Basic analytics dashboard", "Email support", "Member onboarding templates"],
"Capture 10x more leads with AI automation", "WhatsApp automation", "Basic analytics dashboard", "Email support", "Member onboarding templates"],
},
{
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
@@ -187,7 +187,7 @@ export default function HomePage() {
{ text: "Chat With Sales", href: "https://wa.me/1234567890" },
],
features: [
"Up to 200 new leads/month", "Advanced WhatsApp sequences", "Full analytics & reporting", "Priority support", "Custom automation rules", "Team member access"],
"Convert 3x more leads with advanced AI", "Advanced WhatsApp sequences", "Full analytics & reporting", "Priority support", "Custom automation rules", "Team member access"],
},
{
id: "enterprise", price: "Custom", name: "Enterprise", buttons: [
@@ -195,7 +195,7 @@ export default function HomePage() {
{ text: "Schedule Demo", href: "/contact" },
],
features: [
"Unlimited leads", "Multi-location support", "Custom AI training", "Dedicated account manager", "White-label options", "API access & integrations"],
"Unlimited lead capture & conversion", "Multi-location support", "Custom AI training", "Dedicated account manager", "White-label options", "API access & integrations"],
},
]}
animationType="slide-up"
@@ -246,4 +246,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}