6 Commits

Author SHA1 Message Date
c672df956a Update src/app/page.tsx 2026-03-07 13:08:01 +00:00
e4e95f069b Update src/app/layout.tsx 2026-03-07 13:08:00 +00:00
e21008db79 Merge version_2 into main
Merge version_2 into main
2026-03-07 13:06:38 +00:00
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";
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, the ultimate fitness community with expert trainers, diverse classes, and a supportive environment."};
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

@@ -1,6 +1,6 @@
"use client";
import { Activity, Dumbbell, Flame, Heart, Sparkles, Users, Zap } from "lucide-react";
import { Activity, Dumbbell, Flame, Heart, Sparkles, Users, Zap, Star } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
@@ -116,7 +116,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
plans={[
{
id: "basic", price: "$29/month", name: "Basic", buttons: [
id: "basic", price: "$29/month", name: "Basic", badge: "Perfect for Getting Started", badgeIcon: Star, buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" },
],