diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..3ae3775
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,117 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroLogo from "@/components/sections/hero/HeroLogo";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
+import TextAbout from "@/components/sections/about/TextAbout";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { Phone, Mail, MapPin, Clock } from "lucide-react";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
new file mode 100644
index 0000000..e18202e
--- /dev/null
+++ b/src/app/gallery/page.tsx
@@ -0,0 +1,229 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroLogo from "@/components/sections/hero/HeroLogo";
+import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
+import TextAbout from "@/components/sections/about/TextAbout";
+import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
+import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
+import FaqDouble from "@/components/sections/faq/FaqDouble";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { AlertCircle, CheckCircle, Hammer, HelpCircle, Phone, Star, TrendingUp, Wrench, Zap, Image as ImageIcon } from "lucide-react";
+
+export default function GalleryPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d62f699..a14bb70 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -34,7 +34,9 @@ export default function LandingPage() {
{ name: "Why Us", id: "why-us" },
{ name: "Reviews", id: "reviews" },
{ name: "FAQ", id: "faq" },
- { name: "Contact", id: "contact" }
+ { name: "Contact", id: "contact" },
+ { name: "Contact Page", id: "/contact" },
+ { name: "Reviews Page", id: "/reviews" }
]}
/>
@@ -218,4 +220,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx
new file mode 100644
index 0000000..01ead24
--- /dev/null
+++ b/src/app/reviews/page.tsx
@@ -0,0 +1,119 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroLogo from "@/components/sections/hero/HeroLogo";
+import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { Phone, Star } from "lucide-react";
+
+export default function ReviewsPage() {
+ 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..3c973c5
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,229 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroLogo from "@/components/sections/hero/HeroLogo";
+import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
+import TextAbout from "@/components/sections/about/TextAbout";
+import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
+import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
+import FaqDouble from "@/components/sections/faq/FaqDouble";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { AlertCircle, CheckCircle, Hammer, HelpCircle, Phone, Star, TrendingUp, Wrench, Zap } from "lucide-react";
+
+export default function ServicesPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file