import React from 'react'; import { FeatureCard } from 'xertica-ui/blocks'; import { Header } from 'xertica-ui/layout'; import { useLayout } from 'xertica-ui/hooks'; import { Link, useNavigate } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; import { LayoutTemplate } from 'lucide-react'; /** * Home page content — starter placeholder. * * Replace this with your own home page content. Keep the `Header` + * `useLayout()` wiring below if you want the sidebar-aware layout to keep * working; everything inside `
` is yours to redesign. */ export function HomeContent() { const { t } = useTranslation(); const { sidebarExpanded, sidebarWidth } = useLayout(); const navigate = useNavigate(); return (
) => ( )} />

{t('home.welcome')}

{t('home.subtitle')}

{/* Replace this with your own home page content */} } title={t('home.templateCliTitle')} description={t('home.templateCliDescription')} actionLabel={t('common.view')} onAction={() => navigate('/template')} />
); }