diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index d0caba4..5ad0a41 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,13 +1,14 @@
"use client";
-import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import TeamCardTen from "@/components/sections/team/TeamCardTen";
+import MediaAbout from "@/components/sections/about/MediaAbout";
import TextAbout from "@/components/sections/about/TextAbout";
+import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
+import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { Shield, Zap } from "lucide-react";
+import { Shield, Target, Award, Star, Zap, MapPin } from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -66,51 +67,129 @@ export default function AboutPage() {
/>
-
+
+
+
+
+
+
+
+
+
);
-}
\ No newline at end of file
+}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index b3790b8..8dc4b52 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -1,15 +1,50 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Link from "next/link";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
-import TextAbout from "@/components/sections/about/TextAbout";
-import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
+import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
+import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { Zap, Shield } from "lucide-react";
+import { Zap, Shield, Target, Star, MapPin } from "lucide-react";
export default function ServicesPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
+ { name: "Contact", id: "/contact" },
+ ];
+
+ const footerColumns = [
+ {
+ title: "Navigate", items: [
+ { label: "Home", href: "/" },
+ { label: "About", href: "/about" },
+ { label: "Services", href: "/services" },
+ { label: "Contact", href: "/contact" },
+ ],
+ },
+ {
+ title: "Services", items: [
+ { label: "Personal Training", href: "/services" },
+ { label: "Strength & Conditioning", href: "/services" },
+ { label: "Custom Programs", href: "/services" },
+ { label: "Book a Session", href: "/contact" },
+ ],
+ },
+ {
+ title: "Company", items: [
+ { label: "About Us", href: "/about" },
+ { label: "Our Philosophy", href: "/about" },
+ { label: "Contact", href: "/contact" },
+ { label: "Privacy Policy", href: "#" },
+ ],
+ },
+ ];
+
return (
- {/* Navbar */}
- {/* Services Overview Section */}
+
+
+
+
- {/* Detailed Service Breakdown */}
-
-
+
- {/* Philosophy Section */}
-
-
+
+
+
+
+
+
+
+
+
- {/* Footer */}
);
-}
\ No newline at end of file
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index 018e8e2..167cfb2 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #000000;
- --card: #0c0c0c;
+ --background: #0a0a0a;
+ --card: #1a1a1a;
--foreground: #ffffff;
- --primary-cta: #106EFB;
+ --primary-cta: #e34400;
--primary-cta-text: #ffffff;
- --secondary-cta: #000000;
+ --secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
- --accent: #535353;
- --background-accent: #106EFB;
+ --accent: #e34400;
+ --background-accent: #e34400;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);