import { motion } from 'framer-motion' import { useTranslation } from 'react-i18next' import { Link } from 'react-router-dom' import Logo from './ui/Logo' import LanguageSwitcher from './LanguageSwitcher' import './Header.css' function Header() { const { t } = useTranslation() const navLinks = [ { label: t('header.nav.features'), href: '#features' }, { label: t('header.nav.howItWorks'), href: '#how-it-works' }, { label: t('header.nav.privacySecurity'), href: '#privacy' }, { label: t('header.nav.contact'), href: '#contact' }, ] return (
{t('header.cta')}
) } export default Header