From 852aba0c5f167ecc6031e173b614185bf08888f5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 08:44:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abf3a37..153180e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,13 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dynamo Fitness Club", description: "Transform your body, elevate your mind. Premium fitness experience with state-of-the-art equipment, expert trainers, and a supportive community."}; + title: "Dynamo Fitness Club", description: "Transform your body and elevate your fitness journey at Dynamo Fitness Club. Premium equipment, expert trainers, and a supportive community dedicated to your success."}; export default function RootLayout({ children, -- 2.49.1 From 219ae331ac4ee49a2c070ed6bc594ee0e6470e9c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 08:44:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e71bb6b..af55c9f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -165,8 +165,8 @@ export default function LandingPage() { useInvertedBackground={true} className="py-20 md:py-32" containerClassName="space-y-12" - textBoxTitleClassName="text-4xl md:text-5xl font-bold text-blue-100" - textBoxDescriptionClassName="text-lg text-blue-50/80" + titleClassName="text-4xl md:text-5xl font-bold text-blue-100" + descriptionClassName="text-lg text-blue-50/80" tagClassName="bg-gradient-to-r from-blue-400 to-blue-300 text-gray-900" cardClassName="backdrop-blur-xl bg-gradient-to-br from-blue-900/40 to-blue-800/20 border border-blue-400/30 rounded-2xl p-8 hover:border-blue-400/60 transition-all duration-300 hover:shadow-lg hover:shadow-blue-500/20" iconContainerClassName="w-16 h-16 bg-gradient-to-br from-blue-400 to-blue-300 rounded-full flex items-center justify-center mb-6 group-hover:scale-110 transition-transform" @@ -212,7 +212,7 @@ export default function LandingPage() { ]} className="py-20 md:py-32" containerClassName="space-y-12" - textBoxTitleClassName="text-4xl md:text-5xl font-bold text-blue-100" + titleClassName="text-4xl md:text-5xl font-bold text-blue-100" textBoxDescriptionClassName="text-lg text-blue-50/80" tagClassName="bg-gradient-to-r from-blue-400 to-blue-300 text-gray-900" cardClassName="backdrop-blur-xl bg-gradient-to-br from-blue-900/40 to-blue-800/20 border border-blue-400/30 rounded-2xl transition-all duration-300 hover:border-blue-400/60 hover:shadow-lg hover:shadow-blue-500/20" @@ -220,7 +220,6 @@ export default function LandingPage() { planPriceClassName="text-4xl font-bold text-blue-100" planDescriptionClassName="text-blue-50/80" featureTextClassName="text-blue-50/90" - planButtonTextClassName="text-gray-900 font-semibold" planButtonClassName="bg-gradient-to-r from-blue-400 to-blue-300 hover:shadow-lg hover:shadow-blue-500/40 transition-all w-full" /> @@ -256,7 +255,7 @@ export default function LandingPage() { ]} className="py-20 md:py-32" containerClassName="space-y-12" - textBoxTitleClassName="text-4xl md:text-5xl font-bold text-blue-100" + titleClassName="text-4xl md:text-5xl font-bold text-blue-100" textBoxDescriptionClassName="text-lg text-blue-50/80" tagClassName="bg-gradient-to-r from-blue-400 to-blue-300 text-gray-900" quoteCardClassName="backdrop-blur-xl bg-gradient-to-br from-blue-900/40 to-blue-800/20 border border-blue-400/30 rounded-2xl p-8" @@ -286,7 +285,7 @@ export default function LandingPage() { showCard={true} className="py-20 md:py-32" containerClassName="space-y-12" - textBoxTitleClassName="text-3xl md:text-4xl font-bold text-blue-100" + titleClassName="text-3xl md:text-4xl font-bold text-blue-100" textBoxDescriptionClassName="text-lg text-blue-50/80" tagClassName="bg-gradient-to-r from-blue-400 to-blue-300 text-gray-900" logoCardClassName="backdrop-blur-xl bg-gradient-to-br from-blue-900/40 to-blue-800/20 border border-blue-400/30 rounded-lg p-4 flex items-center justify-center" -- 2.49.1