mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-30 08:00:08 +02:00
29 lines
885 B
TypeScript
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">{</span>
|
|
<span>{t('overleaf_template_gallery')}</span>
|
|
<span aria-hidden="true">}</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>
|
|
)
|
|
}
|