import Link from 'next/link' import { useTranslation } from '/src/i18n/server' import logo from '/src/res/logo.svg' import { makeClass } from '/src/utils' import styles from './Header.module.scss' interface HeaderProps { /** Show the full header */ isFull?: boolean } const Header = async ({ isFull }: HeaderProps) => { const { t } = await useTranslation(['common', 'home']) return
{isFull ? <> {t('home:create')}

CRAB FIT

:
CRAB FIT
{t('common:tagline')} }
} export default Header