import { createFileRoute, Link } from '@tanstack/react-router' import { useTranslation } from 'react-i18next' import { Tv } from 'lucide-react' import { useAuthStore } from '@/features/auth/store' import { Button } from '@/shared/ui/button' export const Route = createFileRoute('/')({ component: HomePage }) function HomePage() { const { t } = useTranslation() const { user } = useAuthStore() return (
{t('home.subtitle')}
{t('home.tagline')}