add search setting interface
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
'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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user