2026-01-20 01:51:12 +03:00
|
|
|
|
import searchPic from "@/public/search.svg";
|
2025-03-26 14:00:01 +03:00
|
|
|
|
|
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
import Link from "next/link";
|
2026-01-20 01:51:12 +03:00
|
|
|
|
import Toolbar from "./toolbar";
|
2025-03-26 14:00:01 +03:00
|
|
|
|
|
2026-01-20 01:51:12 +03:00
|
|
|
|
import AnimatedLink from "../animatedLink";
|
2025-03-26 14:00:01 +03:00
|
|
|
|
|
|
|
|
|
|
export default function MainHeader() {
|
2025-03-26 20:58:40 +03:00
|
|
|
|
return (
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<header className="flex flex-col mt-4">
|
|
|
|
|
|
<div className="flex flex-row">
|
2025-03-26 20:58:40 +03:00
|
|
|
|
<ul className="w-full flex flex-row justify-between items-baseline list-none">
|
|
|
|
|
|
<li className="text-4xl">
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<AnimatedLink href="/">
|
|
|
|
|
|
blog.aderk.org
|
2025-03-26 20:58:40 +03:00
|
|
|
|
</AnimatedLink>
|
|
|
|
|
|
</li>
|
2025-03-26 14:00:01 +03:00
|
|
|
|
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<li className="text-6xl flex items-center justify-center filter brightness-0 dark:invert">
|
2025-03-26 20:58:40 +03:00
|
|
|
|
<Link href="#">
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<Image src={searchPic} alt="search" width={28} height={28} />
|
2025-03-26 20:58:40 +03:00
|
|
|
|
</Link>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<div className="text-lg mb-4 mt-6">
|
|
|
|
|
|
<p className="leading-8">
|
|
|
|
|
|
Этот блог - хроника моего погружения в мир компьютерной архитектуры. <br />
|
|
|
|
|
|
Здесь я документирую процесс изучения и проектирования CPU и GPU на основе открытой архитектуры RISC-V. <br />
|
2025-03-26 20:58:40 +03:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2026-01-20 01:51:12 +03:00
|
|
|
|
<Toolbar></Toolbar>
|
2025-03-26 20:58:40 +03:00
|
|
|
|
</header>
|
|
|
|
|
|
);
|
2025-03-26 14:00:01 +03:00
|
|
|
|
}
|