From 390f052d435c7e4af8819ca2314e0b784c61fe20 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:00:56 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 101 +---------------------------------------------- 1 file changed, 2 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e31195..ddb4f6b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,13 +10,12 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import Link from "next/link"; import { Sparkles, Shield, Zap, Users, Star, Clock, Heart, Award } from "lucide-react"; -import { useState } from "react"; const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Membership", id: "/membership" }, - { name: "Assessment", id: "#fitness-assessment" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, ]; @@ -56,24 +55,6 @@ const footerColumns = [ ]; export default function HomePage() { - const [weight, setWeight] = useState(""); - const [fitnessGoal, setFitnessGoal] = useState(""); - const [hoursPerWeek, setHoursPerWeek] = useState(""); - const [assessmentComplete, setAssessmentComplete] = useState(false); - - const handleSubmitAssessment = (e: React.FormEvent) => { - e.preventDefault(); - if (weight && fitnessGoal && hoursPerWeek) { - setAssessmentComplete(true); - setTimeout(() => { - setAssessmentComplete(false); - setWeight(""); - setFitnessGoal(""); - setHoursPerWeek(""); - }, 2000); - } - }; - return ( -
-
-
-

Personalized Fitness Assessment

-

Let us understand your fitness goals and create a personalized plan for you

-
- -
- {assessmentComplete ? ( -
-
-

Assessment Submitted!

-

Thank you for completing your fitness assessment. Our trainers will review your information and reach out soon with a personalized plan.

-
- ) : ( -
-
- - setWeight(e.target.value)} - className="w-full rounded-lg border border-accent bg-background px-4 py-3 text-foreground placeholder-foreground/50 focus:border-primary-cta focus:outline-none" - required - /> -
- -
- - -
- -
- - setHoursPerWeek(e.target.value)} - className="w-full rounded-lg border border-accent bg-background px-4 py-3 text-foreground placeholder-foreground/50 focus:border-primary-cta focus:outline-none" - required - /> -
- - -
- )} -
-
-
-
Date: Tue, 3 Mar 2026 15:00:57 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 0af5aa1..87eb856 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #ff8c42;; - --secondary-cta: #f9f9f9;; - --accent: #e2e2e2;; - --background-accent: #c4c4c4;; */ + /* --background: #0a1f3d;; + --card: #0f2f52;; + --foreground: #e6f0ff;; + --primary-cta: #106EFB;; + --secondary-cta: #0e1a29;; + --accent: #3f5c79;; + --background-accent: #004a93;; */ - --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #ff8c42;; + --background: #0a1f3d;; + --card: #0f2f52;; + --foreground: #e6f0ff;; + --primary-cta: #106EFB;; --primary-cta-text: #ffffff;; - --secondary-cta: #f9f9f9;; + --secondary-cta: #0e1a29;; --secondary-cta-text: #120a00e6;; - --accent: #e2e2e2;; - --background-accent: #c4c4c4;; + --accent: #3f5c79;; + --background-accent: #004a93;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1