feat: Add dev notice

This commit is contained in:
Jesse Wierzbinski 2024-09-28 21:57:17 +02:00
parent 842e842e3c
commit f67b327f75
No known key found for this signature in database
7 changed files with 13 additions and 7 deletions

View file

@ -1,5 +1,6 @@
import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
import { Badge } from "./Metadata";
export function Logo(props: ComponentPropsWithoutRef<"div">) {
return (
@ -16,7 +17,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
Versia Protocol <Badge className="!h-6">Dev</Badge>
</span>
</div>
);