diff --git a/src/app/page.tsx b/src/app/page.tsx index 459410a..d313c2c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,7 @@ "use client"; import React from 'react'; +import Link from 'next/link'; import { Award, CheckCircle, Heart, HelpCircle, Mail, MessageSquare, Sparkles } from 'lucide-react'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; @@ -15,6 +16,15 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { + const navItems = [ + { name: 'Shop', id: '#shop' }, + { name: 'About', id: '#about' }, + { name: 'Features', id: '#features' }, + { name: 'Testimonials', id: '#testimonials' }, + { name: 'FAQ', id: '#faq' }, + { name: 'Contact', id: '#contact' }, + ]; + return ( -
- + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- -
+
); }