+
);
diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx
index 901b312..dd3a897 100644
--- a/src/app/reviews/page.tsx
+++ b/src/app/reviews/page.tsx
@@ -2,12 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
-import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
-import ContactText from "@/components/sections/contact/ContactText";
-import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
-import { Star, Clock, CheckCircle, MapPin } from "lucide-react";
+import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
+import ContactText from "@/components/sections/contact/ContactText";
+import { Star } from "lucide-react"; // Assuming Star might be used in a testimonial component
export default function ReviewsPage() {
const navItems = [
@@ -16,34 +14,7 @@ export default function ReviewsPage() {
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
- { name: "Contact", id: "/contact" },
- ];
-
- const footerColumns = [
- {
- title: "Company", items: [
- { label: "About Us", href: "/about" },
- { label: "Our Work", href: "/gallery" },
- { label: "Client Reviews", href: "/reviews" },
- { label: "Contact", href: "/contact" },
- ],
- },
- {
- title: "Services", items: [
- { label: "Landscape Design", href: "/services" },
- { label: "Sod Installation", href: "/services" },
- { label: "Irrigation Systems", href: "/services" },
- { label: "Drainage Solutions", href: "/services" },
- { label: "Hardscaping", href: "/services" },
- ],
- },
- {
- title: "Connect", items: [
- { label: "Facebook", href: "#" },
- { label: "Instagram", href: "#" },
- { label: "LinkedIn", href: "#" },
- ],
- },
+ { name: "Contact", id: "/contact" }
];
return (
@@ -62,80 +33,46 @@ export default function ReviewsPage() {
({...item, href: item.id}))}
button={{
- text: "Get Free Estimate", href: "/contact"}}
+ text: "Get Free Estimate", href: "/contact"
+ }}
/>
-
+
-
-
-
-
-
+
);
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index 1ac9a35..f46a20c 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -1,40 +1,20 @@
"use client";
-import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
-import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
-import TextAbout from '@/components/sections/about/TextAbout';
-import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
-import ContactText from '@/components/sections/contact/ContactText';
+
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import Link from "next/link";
+import TextAbout from "@/components/sections/about/TextAbout";
+import ContactText from "@/components/sections/contact/ContactText";
+import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
export default function ServicesPage() {
const navItems = [
- { name: "Services", id: "services", href: "/services" },
- { name: "Gallery", id: "gallery", href: "/gallery" }
- ];
-
- const footerColumns = [
- {
- title: "Company", items: [
- { label: "Gallery", href: "/gallery" }
- ]
- },
- {
- title: "Services", items: [
- { label: "Landscape Design", href: "/services" },
- { label: "Sod Installation", href: "/services" },
- { label: "Irrigation Systems", href: "/services" },
- { label: "Drainage Solutions", href: "/services" },
- { label: "Hardscaping", href: "/services" }
- ]
- },
- {
- title: "Connect", items: [
- { label: "Facebook", href: "#" },
- { label: "Instagram", href: "#" },
- { label: "LinkedIn", href: "#" }
- ]
- }
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
+ { name: "Gallery", id: "/gallery" },
+ { name: "Reviews", id: "/reviews" },
+ { name: "Contact", id: "/contact" }
];
return (
@@ -53,73 +33,61 @@ export default function ServicesPage() {
({...item, href: item.href}))}
+ navItems={navItems.map(item => ({...item, href: item.id}))}
+ button={{
+ text: "Get Free Estimate", href: "/contact"
+ }}
/>
-
+
-
+
);
-}
+}
\ No newline at end of file