import { PageHeader } from "@/components/page-header" import { Card, CardContent } from "@/components/ui/card" import type { LucideIcon } from "lucide-react" interface PlaceholderPageProps { section: string title: string description: string Icon: LucideIcon } export function PlaceholderPage({ section, title, description, Icon }: PlaceholderPageProps) { return (

{title}

{description}

Скоро

Этот раздел будет подключён следующим. Слой данных и эндпоинты бэкенда уже готовы.

) }