diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7418e45 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,71 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..7ffa4df --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,56 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 48c2812..9f66851 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,23 +1,17 @@ "use client"; import ReactLenis from "lenis/react"; -import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; 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 FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Target, Users, TrendingUp, Lightbulb } from "lucide-react"; -export default function BusinessCoachTemplatePage() { +export default function HomePage() { const navItems = [ - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -34,211 +28,21 @@ export default function BusinessCoachTemplatePage() { headingFontWeight="medium" > - - - - - - - - + + +
+

Welcome to Coach

+
+
); -} +} \ No newline at end of file diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..a6a303c --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function PricingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..dc83aa9 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,75 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ServicesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file