From e4e95f069b2587059c5fe5f18c317694a7e141b4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:08:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0b96dc4..14b9e9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import "@/styles/globals.css"; +import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); 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({ children, -- 2.49.1 From c672df956a4cc8299e28b922e0af3cc4e7907987 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:08:01 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0b18f4e..696c2b7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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: "#" }, ], @@ -199,7 +199,7 @@ export default function LandingPage() {