import Link from 'next/link'; import React from 'react'; interface NavItemsProps { themeBtn?: string; arrow?: boolean; arrow2?: boolean; btnSpace?: boolean; } const navItems = [ { title: 'Home', link: '#home' }, { title: 'About', link: '#about' }, { title: 'Services', link: '#services' }, { title: 'Portfolio', link: '#portfolio' }, { title: 'FAQ', link: '#faq' }, { title: 'Contact', link: '#contact-trigger' }, ]; const NavItems: React.FC = () => { return ( ); }; export default NavItems;