diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d51f6cb..1c0a450 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,135 +2,133 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import ContactText from '@/components/sections/contact/ContactText'; import FeatureBento from '@/components/sections/feature/FeatureBento'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextAbout from '@/components/sections/about/TextAbout'; -import { CalendarCheck, FileText, Gauge, Paintbrush } from "lucide-react"; +import { Award, CheckCircle, Droplet, FileText, Grid, Heart, MessageCircle, ShieldCheck, Sparkles, Gauge, Paintbrush, CalendarCheck } from "lucide-react"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "FAQ", id: "/faq" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ +
);