3 Commits

Author SHA1 Message Date
85879b587c Update src/app/page.tsx 2026-03-07 13:06:33 +00:00
7a1cebe089 Update src/app/layout.tsx 2026-03-07 13:06:33 +00:00
a8fc6a8d7b Merge version_1 into main
Merge version_1 into main
2026-03-07 13:04:51 +00:00
2 changed files with 8 additions and 37 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "FitZone - Premium Gym & Fitness Classes", description: "Transform your fitness journey at FitZone. Expert trainers, diverse classes, and a supportive community. Join today and achieve your goals!", keywords: "gym, fitness classes, personal training, strength training, yoga, cardio, fitness community", openGraph: {
title: "FitZone - Your Fitness Transformation Starts Here", description: "Premium gym with expert trainers, diverse classes, and supportive community. Transform your body and mind.", type: "website", siteName: "FitZone", images: [
{
url: "http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg", alt: "FitZone gym fitness training"},
],
},
twitter: {
card: "summary_large_image", title: "FitZone - Premium Gym & Fitness", description: "Transform your fitness journey with expert trainers and a supportive community.", images: ["http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "FitZone - Transform Your Fitness", description: "Join FitZone fitness community"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -199,7 +199,7 @@ export default function LandingPage() {
<ContactCenter
tag="Get Started"
title="Ready to Transform?"
description="Join FitZone today and start your fitness transformation. Sign up for exclusive offers, fitness tips, and community updates delivered to your inbox."
description="Join 5,000+ members transforming their fitness with FitZone. Sign up for exclusive offers, fitness tips, and community updates delivered to your inbox. Experience the supportive community that helps you achieve your goals."
tagIcon={Flame}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}