import { cn } from '@/lib/utils'; import { siteConfig } from '@/data/config/site.settings'; import { headerNavLinks } from '@/data/config/headerNavLinks'; import Link from './Link'; import MobileNav from './MobileNav'; import ThemeSwitch from './ThemeSwitch'; import SearchButton from '../search/SearchButton'; import ActiveLink from '@/components/shared/ActiveLink'; import Image from 'next/image'; const Header = ({ className }: { className?: string }) => { return ( <> {/*

We are live on Product Hunt today! Come by and say hi 🚀

Page UI - React components to make a pretty landing page that converts | Product Hunt
*/}
Page UI logo
Page UI
{headerNavLinks.map((link) => { const hiddenOnSmallScreen = link.href.includes('component-examples') || link.href.includes('templates'); if (link.href === 'https://shipixen.com') { return ( {link.title} ); } return ( {link.title} ); })}
); }; export default Header;