overleaf-cep/services/web/frontend/js/features/template-gallery/components/gallery-header-all.tsx
2025-07-22 19:22:09 +02:00

29 lines
885 B
TypeScript

import { useTranslation } from 'react-i18next'
import OLCol from '@/features/ui/components/ol/ol-col'
import OLRow from '@/features/ui/components/ol/ol-row'
export default function GalleryHeaderAll() {
const { t } = useTranslation()
return (
<div className="gallery-header">
<OLRow>
<OLCol md={12}>
<h1 className="gallery-title">
<span className="eyebrow-text">
<span aria-hidden="true">&#123;</span>
<span>{t('overleaf_template_gallery')}</span>
<span aria-hidden="true">&#125;</span>
</span>
{t('latex_templates')}
</h1>
</OLCol>
</OLRow>
<div className="row">
<div className="col-md-12">
<p className="gallery-summary">{t('latex_templates_for_journal_articles')}
</p>
</div>
</div>
</div>
)
}