diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 989e5c9..a8da28d 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,44 +1,14 @@
"use client";
-import ReactLenis from "lenis/react";
-import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
-import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import MediaAbout from "@/components/sections/about/MediaAbout";
export default function AboutPage() {
- return (
-
-
-
-
-
-
-
-
- );
+ 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..0648b78
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,14 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 03787aa..aa170cf 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,10 +1,7 @@
"use client";
import ReactLenis from "lenis/react";
-import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
-import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
-import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
-import FeatureCardThree_2 from "@/components/sections/feature/featureCardThree/FeatureCardThree";
+import HeroCarouselLogo from "@/components/sections/hero/HeroCarouselLogo";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -29,71 +26,28 @@ export default function TrashCleaningPage() {
navItems={[
{ name: "About Us", id: "/about" },
{ name: "Pricing", id: "/pricing" },
- { name: "Social Media", id: "social" },
+ { name: "Contact", id: "/contact" },
+ { name: "Social Media", id: "/social-media" },
]}
brandName="NextGenBinCleaning"
- button={{ text: "330-581-5104 | 330-265-5048", href: "tel:3305815104" }}
/>
-
-
-
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
new file mode 100644
index 0000000..64a497c
--- /dev/null
+++ b/src/app/pricing/page.tsx
@@ -0,0 +1,25 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
+import { Trash2 } from "lucide-react";
+
+export default function PricingPage() {
+ return (
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/social-media/page.tsx b/src/app/social-media/page.tsx
new file mode 100644
index 0000000..94d5991
--- /dev/null
+++ b/src/app/social-media/page.tsx
@@ -0,0 +1,16 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import TextAnimation from "@/components/text/TextAnimation";
+
+export default function SocialMediaPage() {
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file