fix: 🐛 Begin v0.6 draft

This commit is contained in:
Jesse Wierzbinski 2025-04-21 17:47:18 +02:00
parent be79c569a1
commit 3117b376c9
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
// Uncomment this on dev branches
// import { Badge } from "./Metadata";
import { Badge } from "./Metadata";
export function Logo(props: ComponentPropsWithoutRef<"div">) {
return (
@ -18,7 +18,7 @@ export function Logo(props: ComponentPropsWithoutRef<"div">) {
className="h-full rounded-sm"
/>
<span className="fill-zinc-900 dark:fill-white font-semibold text-lg">
Versia Protocol {/* <Badge className="!h-6">Dev</Badge> */}
Versia Protocol <Badge className="!h-6">Dev</Badge>
</span>
</div>
);