diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6f1fa53..9f368bf 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,26 +32,11 @@ export default function LandingPage() {
@@ -59,17 +44,10 @@ export default function LandingPage() {
-
-
@@ -210,61 +103,8 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
- {
- id: "t1",
- name: "Alice Green",
- date: "2023-10",
- title: "Local Resident",
- quote: "Cabro City transformed our neighborhood. The pavements are beautiful and durable.",
- tag: "Resident",
- avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c2016h",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203887708-8ctajwl3.jpg",
- imageAlt: "happy city resident portrait",
- },
- {
- id: "t2",
- name: "Mark Smith",
- date: "2023-11",
- title: "Business Owner",
- quote: "Reliable manufacturing and prompt delivery. Couldn't ask for a better partner.",
- tag: "Partner",
- avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fxzysa",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203921020-k1tmig1j.jpg",
- imageAlt: "happy city resident portrait",
- },
- {
- id: "t3",
- name: "Sarah Miller",
- date: "2023-12",
- title: "Proud Mom",
- quote: "The new parks and paths make our city feel so welcoming for the kids.",
- tag: "Resident",
- avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a8oet9",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203973690-srxy0xxu.jpg",
- imageAlt: "happy city resident portrait",
- },
- {
- id: "t4",
- name: "John Davis",
- date: "2024-01",
- title: "Religious Centre ",
- quote: "Cabro City sets the gold standard for urban paving excellence in our region.",
- tag: "Leader",
- avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ojpjlo",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203901909-xtl3ayjk.jpg",
- imageAlt: "happy city resident portrait",
- },
- {
- id: "t5",
- name: "Linda White",
- date: "2024-02",
- title: "Senior Citizen",
- quote: "Everything is accessible and clean. Thank you for our safe city.",
- tag: "Resident",
- avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3vmw9d",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203949055-i7nv65k0.jpg",
- imageAlt: "happy city resident portrait",
- },
+ { id: "t1", name: "Alice Green", date: "2023-10", title: "Local Resident", quote: "Cabro City transformed our neighborhood. The pavements are beautiful and durable.", tag: "Resident", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c2016h", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203887708-8ctajwl3.jpg", imageAlt: "happy city resident portrait" },
+ { id: "t2", name: "Mark Smith", date: "2023-11", title: "Business Owner", quote: "Reliable manufacturing and prompt delivery. Couldn't ask for a better partner.", tag: "Partner", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fxzysa", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwlKwXSyxYxfRkpE6BVKvnENKh/uploaded-1779203921020-k1tmig1j.jpg", imageAlt: "happy city resident portrait" },
]}
title="Stories from Our Community"
description="Residents and partners share their experience with Cabro City infrastructure and services."
@@ -275,21 +115,8 @@ export default function LandingPage() {
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
new file mode 100644
index 0000000..0e08ef5
--- /dev/null
+++ b/src/app/products/page.tsx
@@ -0,0 +1,62 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+
+export default function ProductsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}