diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..9a21cde --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,178 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Award, CheckCircle, Users, Zap, Linkedin, Twitter } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index d81a6f7..c4444f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "home" }, { name: "Services", id: "services" }, - { name: "About", id: "about" }, + { name: "/about", id: "/about" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" } ]} @@ -83,7 +83,7 @@ export default function LandingPage() { mediaAnimation="slide-up" imagePosition="right" buttons={[ - { text: "Learn More About Us", href: "about" } + { text: "Learn More About Us", href: "/about" } ]} />