10 Commits

Author SHA1 Message Date
202ac82128 Merge version_2 into main
Merge version_2 into main
2026-03-05 12:44:39 +00:00
82720e9187 Update src/app/services/page.tsx 2026-03-05 12:44:34 +00:00
3301261910 Update src/app/page.tsx 2026-03-05 12:44:33 +00:00
a73e9efb66 Update src/app/contact/page.tsx 2026-03-05 12:44:32 +00:00
fcd8af96c5 Update src/app/about/page.tsx 2026-03-05 12:44:31 +00:00
ab6b89d2ed Merge version_1 into main
Merge version_1 into main
2026-03-05 12:33:00 +00:00
896fb97160 Merge version_1 into main
Merge version_1 into main
2026-03-05 12:32:08 +00:00
2c94c5e997 Merge version_1 into main
Merge version_1 into main
2026-03-05 11:30:10 +00:00
739c94b716 Merge version_1 into main
Merge version_1 into main
2026-03-05 11:29:18 +00:00
ecf2eba8cd Merge version_1 into main
Merge version_1 into main
2026-03-05 11:26:59 +00:00
4 changed files with 10 additions and 19 deletions

View File

@@ -28,7 +28,6 @@ export default function AboutPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
brandName="Elite Fitness" brandName="Elite Fitness"
@@ -134,7 +133,7 @@ export default function AboutPage() {
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Services", href: "/services" }, { label: "Services", href: "/services" },
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Testimonials", href: "/testimonials" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {

View File

@@ -27,7 +27,6 @@ export default function ContactPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
brandName="Elite Fitness" brandName="Elite Fitness"
@@ -103,7 +102,7 @@ export default function ContactPage() {
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Services", href: "/services" }, { label: "Services", href: "/services" },
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Testimonials", href: "/testimonials" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroCentered from '@/components/sections/hero/HeroCentered'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
@@ -31,7 +31,6 @@ export default function HomePage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
brandName="Elite Fitness" brandName="Elite Fitness"
@@ -41,22 +40,17 @@ export default function HomePage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroLogo
title="Transform Your Fitness Journey" logoText="Elite Fitness"
description="Expert personal training designed to build strength, endurance, and confidence. Achieve your goals with customized workout plans and dedicated coaching." description="Expert personal training designed to build strength, endurance, and confidence. Achieve your goals with customized workout plans and dedicated coaching."
background={{ variant: "downward-rays-static" }}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/portrait-muscular-handsome-man-wetsuit-with-cloud-talc-around-dark-background_613910-15101.jpg", alt: "Elite Fitness Trainer" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-pink-top-standing-with-coach_1157-32117.jpg", alt: "Client Success" },
{ src: "http://img.b2bpic.net/free-photo/woman-with-visible-abs-doing-fitness_23-2150228872.jpg", alt: "Fitness Results" }
]}
avatarText="Trusted by 500+ Transformation Stories"
buttons={[ buttons={[
{ text: "Start Your Transformation", href: "/contact" }, { text: "Start Your Transformation", href: "/contact" },
{ text: "Learn More", href: "/services" } { text: "Learn More", href: "/services" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
className="w-full" imageSrc="http://img.b2bpic.net/free-photo/portrait-muscular-handsome-man-wetsuit-with-cloud-talc-around-dark-background_613910-15101.jpg"
imageAlt="Elite Fitness"
showDimOverlay={false}
/> />
</div> </div>
@@ -197,7 +191,7 @@ export default function HomePage() {
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Services", href: "/services" }, { label: "Services", href: "/services" },
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Testimonials", href: "/testimonials" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {

View File

@@ -28,7 +28,6 @@ export default function ServicesPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
brandName="Elite Fitness" brandName="Elite Fitness"
@@ -131,7 +130,7 @@ export default function ServicesPage() {
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Services", href: "/services" }, { label: "Services", href: "/services" },
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Testimonials", href: "/testimonials" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {