18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
'use client'
|
|
|
|
import { useTranslations } from 'next-intl'
|
|
|
|
export default function SearchTitle() {
|
|
const t = useTranslations('Global');
|
|
|
|
return (
|
|
<div className="block-wrapper">
|
|
<h1 className="page-title">
|
|
{t('search-protected-content')}
|
|
</h1>
|
|
<p className="page-description">
|
|
{t('search-title-description')}
|
|
</p>
|
|
</div>
|
|
)
|
|
} |