This commit is contained in:
Dominik Klarkowski
2026-06-22 15:19:38 +02:00
parent 763321ec68
commit 4b3373869b
34 changed files with 268 additions and 143 deletions

10
components/wordmark.tsx Normal file
View File

@@ -0,0 +1,10 @@
export function Wordmark({ className }: { className?: string }) {
return (
<span
className={`tracking-tight text-white [font-family:var(--font-space-grotesk)] ${className ?? ""}`}
>
<span className="font-bold [-webkit-text-stroke:0.7px_white]">KNUR</span>
<span className="font-medium text-accent">.APP</span>
</span>
);
}