diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..8a5189d
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,163 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroSplit from "@/components/sections/hero/HeroSplit";
+import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
+import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
+import { Sparkles, Star } from "lucide-react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..80ce002
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,112 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroSplit from "@/components/sections/hero/HeroSplit";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
+import { Sparkles } from "lucide-react";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 27237de..4d619de 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,11 +30,11 @@ export default function LandingPage() {
@@ -48,8 +48,8 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
- { text: "Explore Products", href: "#categories" },
- { text: "Visit Store", href: "#visit" }
+ { text: "Explore Products", href: "/products" },
+ { text: "Visit Store", href: "#contact" }
]}
buttonAnimation="slide-up"
mediaItems={[
@@ -69,7 +69,7 @@ export default function LandingPage() {
@@ -142,7 +142,7 @@ export default function LandingPage() {
@@ -193,7 +193,7 @@ export default function LandingPage() {