diff --git a/src/app/page.tsx b/src/app/page.tsx
index a3a8027..c479158 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,244 +1,141 @@
"use client";
import ReactLenis from "lenis/react";
-import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
+import HeroCentered from "@/components/sections/hero/HeroCentered";
+import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
+import ProductCardFour from "@/components/sections/product/ProductCardFour";
+import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
+import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
+import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
+import FaqSplitText from "@/components/sections/faq/FaqSplitText";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
-import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
-import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
-import TeamCardTen from "@/components/sections/team/TeamCardTen";
-import ContactText from "@/components/sections/contact/ContactText";
-import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Sparkles, Target, Users, TrendingUp, Lightbulb } from "lucide-react";
+import { CheckCircle, Clock, DollarSign, Users, Sparkles, Phone, Zap } from "lucide-react";
-export default function BusinessCoachTemplatePage() {
- const navItems = [
- { name: "About", id: "about" },
- { name: "Services", id: "services" },
- { name: "Testimonials", id: "testimonials" },
- { name: "Contact", id: "contact" },
- ];
+export default function TradieCoachingPage() {
+ const navItems = [
+ { name: "Problem", id: "problem" },
+ { name: "Services", id: "services" },
+ { name: "Packages", id: "packages" },
+ { name: "Contact", id: "contact" },
+ ];
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- );
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
}