feat: implement registration page with form validation and add custom typography fonts

This commit is contained in:
Your Name
2026-04-10 13:41:11 +05:30
parent 97577efcf6
commit 414e683e0b
11 changed files with 199 additions and 38 deletions
+14
View File
@@ -0,0 +1,14 @@
import { DotIcon } from "@phosphor-icons/react"
import "@fontsource/knewave"
export default function Logo() {
return (
<div className="flex items-baseline leading-none align-baseline">
<span className="text-2xl font-light font-logo text-accent">&nbsp;Pi</span>
<DotIcon weight="fill" size={12} className="text-accent translate-y-px" />
<span className="text-2xl font-light font-logo text-accent ml-0.5">Ku</span>
<DotIcon weight="fill" size={12} className="text-accent translate-y-px" />
</div>
);
}