26 lines
987 B
TypeScript
26 lines
987 B
TypeScript
|
|
import Link from "next/link";
|
|||
|
|
|
|||
|
|
export default function Post() {
|
|||
|
|
return (
|
|||
|
|
<>
|
|||
|
|
<main className="flex flex-col gap-[32px] row-start-2 items-center">
|
|||
|
|
<section className="space-y-1 text-center">
|
|||
|
|
<dl className="space-y-10">
|
|||
|
|
<div>
|
|||
|
|
<dt className="sr-only">Опубликовано</dt>
|
|||
|
|
<dd className="text-base leading-6 font-medium text-gray-500 dark:text-gray-400">
|
|||
|
|
Monday, December 21, 2025
|
|||
|
|
</dd>
|
|||
|
|
</div>
|
|||
|
|
</dl>
|
|||
|
|
<div>
|
|||
|
|
<h1 className="text-3xl leading-9 font-extrabold tracking-tight text-gray-900 sm:text-4xl sm:leading-10 md:text-5xl md:leading-14 lg:text-3xl dark:text-gray-100">
|
|||
|
|
Создание и интеграция собственного процессорного ядра на базе RISC-V с использованием языка Chisel
|
|||
|
|
</h1>
|
|||
|
|
</div>
|
|||
|
|
</section>
|
|||
|
|
</main>
|
|||
|
|
</>
|
|||
|
|
);
|
|||
|
|
}
|