'use client' import Link from 'next/link' import { useState } from 'react' import { posthog } from '@/lib/posthog' const apps = [ { name: 'Snakkimo', href: '/apps/snakkimo', accent: '#7BA7BC' }, { name: 'Fittimo', href: '/apps/fittimo', accent: '#7DAF8A' }, { name: 'Rezeptimo', href: '/apps/rezeptimo', accent: '#C4896A' }, ] export default function Nav() { const [appsOpen, setAppsOpen] = useState(false) return (
{/* Logo */} posthog.capture('nav_link_clicked', { label: 'Logo', href: '/' })} style={{ textDecoration: 'none', display: 'flex', alignItems: 'center', gap: 12 }}>
HyggeCraftery {/* Nav links */}
) } const navLinkStyle: React.CSSProperties = { textDecoration: 'none', color: '#3D2B1F', fontSize: 14.5, fontWeight: 500, letterSpacing: 0.3, opacity: 0.78, }