From 28c0581ea1ee7d557d639e60cbeca7746a7958a5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 08:05:36 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 119 ++++++++++------------------------------- 1 file changed, 27 insertions(+), 92 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4012724..4313f44 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,9 +6,9 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FooterBase from '@/components/sections/footer/FooterBase'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Heart, Shield, Zap } from "lucide-react"; +import { Heart, Bed, Zap, Shield } from "lucide-react"; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -57,18 +42,9 @@ export default function LandingPage() { title="Experience Excellence at Royal Fitness" description="Located in the heart of Hyderabad, we provide a world-class training environment designed to help you crush your fitness goals." metrics={[ - { - value: "1500+", - title: "Happy Members", - }, - { - value: "10+", - title: "Expert Trainers", - }, - { - value: "24/7", - title: "Gym Access", - }, + { value: "1500+", title: "Happy Members" }, + { value: "10+", title: "Expert Trainers" }, + { value: "24/7", title: "Gym Access" }, ]} imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-gym-fitness-room-interior_74190-5886.jpg" mediaAnimation="slide-up" @@ -85,46 +61,22 @@ export default function LandingPage() { description="A focus on functional strength and recovery." features={[ { - id: "f1", - title: "Recovery Zone", - description: "Dedicated space for stretching and recovery.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-professional-plus-size-dancer-training_23-2150588847.jpg?_wi=2", - }, + id: "f1", title: "Recovery Zone", description: "Dedicated space for stretching and recovery.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/full-shot-professional-plus-size-dancer-training_23-2150588847.jpg"}, items: [ - { - icon: Heart, - text: "Stretching", - }, - { - icon: Bed, - text: "Recovery", - }, + { icon: Heart, text: "Stretching" }, + { icon: Bed, text: "Recovery" }, ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/dumbbell_74190-7810.jpg?_wi=2", - imageAlt: "modern gym dark aesthetic", + reverse: false }, { - id: "f2", - title: "Strength Lab", - description: "Pro-grade equipment for power lifting.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/dumbbell_74190-7810.jpg?_wi=3", - }, + id: "f2", title: "Strength Lab", description: "Pro-grade equipment for power lifting.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/dumbbell_74190-7810.jpg"}, items: [ - { - icon: Zap, - text: "Power", - }, - { - icon: Shield, - text: "Safety", - }, + { icon: Zap, text: "Power" }, + { icon: Shield, text: "Safety" }, ], - reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/muscular-brunette-woman-training-with-ropes_651396-1615.jpg?_wi=2", - imageAlt: "large fitness gym interior", + reverse: true }, ]} /> @@ -134,33 +86,16 @@ export default function LandingPage() {