123
This commit is contained in:
29
apps/web/src/app/(dashboard)/dashboard/search/page.tsx
Normal file
29
apps/web/src/app/(dashboard)/dashboard/search/page.tsx
Normal file
@ -0,0 +1,29 @@
|
||||
'use client';
|
||||
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Search } from 'lucide-react';
|
||||
|
||||
export default function DashboardSearchPage() {
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold">Поиск курсов</h1>
|
||||
<p className="text-muted-foreground">Поиск по каталогу курсов (скоро)</p>
|
||||
</div>
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle className="flex items-center gap-2">
|
||||
<Search className="h-5 w-5" />
|
||||
Поиск
|
||||
</CardTitle>
|
||||
<CardDescription>
|
||||
Здесь будет поиск по курсам через Meilisearch. Пока используйте раздел «Мои курсы».
|
||||
</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-muted-foreground">Функция в разработке.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user