diff --git a/src/app/page.tsx b/src/app/page.tsx index 9e7b213..6ed99d3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,10 +9,14 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Shield, Zap, Star } from 'lucide-react'; +import { Shield, Zap } from 'lucide-react'; export default function Page() { - const navItems = [{ name: 'Home', id: '/' }]; + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Contact', id: '/contact' } + ]; return (