add search setting interface

This commit is contained in:
smanylov
2026-03-24 18:14:08 +07:00
parent 0955d66931
commit 18e700bb6e
12 changed files with 301 additions and 49 deletions
+18
View File
@@ -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>
)
}