import { Link } from '@inertiajs/react' import { IconArrowLeft } from '@tabler/icons-react' import classNames from '~/lib/classNames' import { useTranslation } from 'react-i18next' interface BackToHomeHeaderProps { className?: string children?: React.ReactNode } export default function BackToHomeHeader({ className, children }: BackToHomeHeaderProps) { const { t } = useTranslation() return (

{t('common.backToHome')}

{children}
) }