diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..525c158 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,171 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, Heart, Clock, Users, AlertTriangle } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9847649..ef4feba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,7 +31,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Why Us", id: "why-us" }, { name: "Reviews", id: "reviews" }, - { name: "Service Area", id: "service-area" } + { name: "Service Area", id: "service-area" }, + { name: "About", id: "/about" } ]} button={{ text: "Call Now", href: "tel:+14023831633" }} animateOnLoad={true} @@ -206,7 +207,7 @@ export default function LandingPage() { }, { title: "Company", items: [ - { label: "About Us", href: "#why-us" }, + { label: "About Us", href: "/about" }, { label: "Reviews", href: "#reviews" }, { label: "Service Area", href: "#service-area" }, { label: "Contact", href: "tel:+14023831633" }