4 Commits

Author SHA1 Message Date
314ce0c3ff Merge version_3 into main
Merge version_3 into main
2026-03-07 13:08:05 +00:00
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
2 changed files with 5 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "@/styles/globals.css"; import "./globals.css";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "FitZone - Transform Your Fitness", description: "Join FitZone fitness community"}; 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({ export default function RootLayout({
children, children,

View File

@@ -1,6 +1,6 @@
"use client"; "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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
@@ -116,7 +116,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
plans={[ 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: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" }, { text: "Learn More", href: "#" },
], ],
@@ -199,7 +199,7 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
tag="Get Started" tag="Get Started"
title="Ready to Transform?" title="Ready to Transform?"
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." description="Join FitZone today and start your fitness transformation. Sign up for exclusive offers, fitness tips, and community updates delivered to your inbox."
tagIcon={Flame} tagIcon={Flame}
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}