diff --git a/src/app/page.tsx b/src/app/page.tsx index a38e090..c0c8c60 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,22 +31,11 @@ export default function LandingPage() { @@ -142,315 +63,26 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} features={[ - { - title: "Premium Equipment", - description: "Modern machines and free weights for complete strength training.", - imageSrc: "http://img.b2bpic.net/free-photo/barbell-weights-rack_23-2147789571.jpg?_wi=2", - }, - { - title: "Professional Trainers", - description: "Friendly and experienced trainers guiding members at every level.", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-top-standing-with-coach_1157-32128.jpg?_wi=2", - }, - { - title: "Clean Environment", - description: "A hygienic space designed to keep you focused.", - imageSrc: "http://img.b2bpic.net/free-photo/training-items-athletics_23-2151077753.jpg?_wi=2", - }, - { - title: "Strong Community", - description: "A motivating fitness space where members support each other.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-women-working-out-together_23-2148430259.jpg?_wi=2", - }, + { title: "Premium Equipment", description: "Modern machines and free weights for complete strength training.", imageSrc: "http://img.b2bpic.net/free-photo/barbell-weights-rack_23-2147789571.jpg?_wi=2" }, + { title: "Professional Trainers", description: "Friendly and experienced trainers guiding members at every level.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-top-standing-with-coach_1157-32128.jpg?_wi=2" }, + { title: "Clean Environment", description: "A hygienic space designed to keep you focused.", imageSrc: "http://img.b2bpic.net/free-photo/training-items-athletics_23-2151077753.jpg?_wi=2" }, + { title: "Strong Community", description: "A motivating fitness space where members support each other.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-adult-women-working-out-together_23-2148430259.jpg?_wi=2" }, ]} title="Why Members Love The Gym Lahore" description="Excellence in every corner of our facility." /> -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- ); -} +} \ No newline at end of file diff --git a/src/app/trainers/page.tsx b/src/app/trainers/page.tsx new file mode 100644 index 0000000..8c0d7d9 --- /dev/null +++ b/src/app/trainers/page.tsx @@ -0,0 +1,40 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function TrainersPage() { + return ( + + + + + + + + ); +} \ No newline at end of file