2026-01-20 01:51:12 +03:00
|
|
|
"use client";
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
import { FaGlobe, FaEnvelope, FaRss } from "react-icons/fa";
|
2025-03-25 22:48:31 +03:00
|
|
|
|
|
|
|
|
export default function Toolbar() {
|
2026-01-20 01:51:12 +03:00
|
|
|
return (
|
|
|
|
|
<div className="flex h-16 justify-between items-center dark:border-white border-black border-t border-b">
|
|
|
|
|
<div className="flex items-baseline">
|
|
|
|
|
<p>
|
|
|
|
|
<Link href="#">Science</Link> |{" "}
|
|
|
|
|
<Link href="#">Software</Link> |{" "}
|
|
|
|
|
<Link href="#">Hardware</Link>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-baseline">
|
|
|
|
|
<ul className="inline-flex items-center gap-4">
|
|
|
|
|
<li className="inline text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
|
|
|
|
<Link href="#">
|
|
|
|
|
<FaGlobe size={24} />
|
|
|
|
|
</Link>
|
|
|
|
|
</li>
|
|
|
|
|
<li className="inline text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
|
|
|
|
<Link href="emailto:konstantin@aderk.org">
|
|
|
|
|
<FaEnvelope size={24} />
|
|
|
|
|
</Link>
|
|
|
|
|
</li>
|
|
|
|
|
<li className="inline text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
|
|
|
|
<Link href="#">
|
|
|
|
|
<FaRss size={24} />
|
|
|
|
|
</Link>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-03-25 21:41:09 +03:00
|
|
|
}
|