fix: add Knewave css font

This commit is contained in:
Your Name
2026-04-10 16:53:14 +05:30
parent 06b5663ec6
commit 77186d0dd0
+12 -4
View File
@@ -1,5 +1,5 @@
import { DotIcon } from "@phosphor-icons/react"
import "@fontsource/knewave"
import { DotIcon } from "@phosphor-icons/react";
import "@fontsource/knewave/400.css";
export default function Logo() {
return (
@@ -8,9 +8,17 @@ export default function Logo() {
style={{ fontFamily: "'Knewave', serif" }}
>
<span className="text-2xl font-light text-accent">Pi</span>
<DotIcon weight="fill" size={12} className="text-accent translate-y-[0.3em] -mx-px" />
<DotIcon
weight="fill"
size={12}
className="text-accent translate-y-[0.3em] -mx-px"
/>
<span className="text-2xl font-light text-accent">Ku</span>
<DotIcon weight="fill" size={12} className="text-accent translate-y-[0.3em] -mx-px" />
<DotIcon
weight="fill"
size={12}
className="text-accent translate-y-[0.3em] -mx-px"
/>
</span>
);
}