diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9e885f0..505af65 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,21 +2,21 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Palette, Sparkles, Heart, Smile, Zap, Star, Award, Briefcase, Target, Users } from 'lucide-react'; +import { Sparkles, Palette, Heart, Smile, Zap, Music, Briefcase, Target, Users, Star, Award } from 'lucide-react'; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "Gallery", id: "gallery" }, - { name: "Packages", id: "packages" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Packages", id: "/packages" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -34,7 +34,7 @@ export default function AboutPage() { { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, { label: "Packages", href: "/packages" }, - { label: "FAQ", href: "#faq" }, + { label: "FAQ", href: "/" }, { label: "Contact", href: "/contact" }, ], }, @@ -79,84 +79,86 @@ export default function AboutPage() { /> -