diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..d4aad3f
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,148 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import HeroBillboard from '@/components/sections/hero/HeroBillboard';
+import MediaAbout from '@/components/sections/about/MediaAbout';
+import TeamCardSix from '@/components/sections/team/TeamCardSix';
+import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
+import { Heart, Users, Star, Rocket } from 'lucide-react';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3ed4702..93929e8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "Features", id: "features" },
- { name: "About", id: "about" },
+ { name: "About", id: "/about" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
@@ -51,7 +51,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{ text: "Explore Now", href: "features" },
- { text: "Learn More", href: "about" }
+ { text: "Learn More", href: "/about" }
]}
buttonAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/food-background-food-concept-with-various-tasty-fresh-ingredients-cooking-italian-food-ingredients-view-from-with-copy-space_1220-1373.jpg?id=1159939"
@@ -89,111 +89,12 @@ export default function LandingPage() {
/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-