first commit

This commit is contained in:
grigorij
2026-08-03 21:02:34 +04:00
commit b0bafe740f
39 changed files with 2326 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
interface SectionEyebrowProps {
children: React.ReactNode;
accent?: "blue" | "green";
}
export default function SectionEyebrow({
children,
accent = "blue",
}: SectionEyebrowProps) {
const dot = accent === "green" ? "bg-green-400" : "bg-blue-400";
return (
<div className="mb-4 inline-flex items-center gap-2 font-mono text-xs uppercase tracking-[0.2em] text-ink-500">
<span className={`h-1.5 w-1.5 rounded-full ${dot}`} />
{children}
</div>
);
}