Files
SIte/frontend/src/app/rid/page.tsx
2025-09-23 15:24:40 +03:00

33 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function RIDPage() {
return (
<div className="max-w-4xl mx-auto">
<h1 className="text-3xl font-bold text-gray-900 mb-8">
РИД - Результаты интеллектуальной деятельности
</h1>
<div className="bg-white rounded-lg shadow-sm border p-6">
<div className="prose max-w-none">
<p className="text-lg text-gray-600 mb-6">
Здесь представлены результаты интеллектуальной деятельности отдела радиофотоники.
</p>
<h2 className="text-2xl font-semibold text-gray-900 mb-4">Патенты</h2>
<div className="space-y-4">
<div className="border-l-4 border-blue-500 pl-4">
<h3 className="font-medium text-gray-900">Патент на изобретение</h3>
<p className="text-gray-600">Описание патента будет добавлено позднее</p>
</div>
</div>
<h2 className="text-2xl font-semibold text-gray-900 mb-4 mt-8">Программные продукты</h2>
<div className="space-y-4">
<div className="border-l-4 border-green-500 pl-4">
<h3 className="font-medium text-gray-900">Программное обеспечение</h3>
<p className="text-gray-600">Описание программного продукта будет добавлено позднее</p>
</div>
</div>
</div>
</div>
</div>
)
}