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

@ -52,7 +52,7 @@ export const Header = forwardRef<ElementRef<"div">, { className?: string }>(
className={clsx(
className,
// Add bg-construction bg-opacity-10 [background-size:57px_57px] classes to make it striped
"fixed inset-x-0 top-0 z-50 flex h-14 items-center justify-between gap-2 px-4 transition sm:px-6 lg:left-72 lg:z-30 lg:px-8 xl:left-80",
"fixed inset-x-0 top-0 z-50 flex h-14 items-center justify-between gap-2 px-4 transition sm:px-6 lg:left-72 lg:z-30 lg:px-8 xl:left-80 bg-construction bg-opacity-10 [background-size:57px_57px]",
!isInsideMobileNavigation &&
"backdrop-blur-sm lg:left-72 xl:left-80 dark:backdrop-blur",
isInsideMobileNavigation
@ -95,7 +95,7 @@ export const Header = forwardRef<ElementRef<"div">, { className?: string }>(
<ThemeToggle />
</div>
<div className="hidden min-[500px]:contents">
<Button href="/changelog">Working Draft 5</Button>
<Button href="/changelog">Working Draft 6</Button>
</div>
</div>
</motion.div>

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>
);

View file

@ -334,7 +334,7 @@ export function Navigation(props: ComponentPropsWithoutRef<"nav">) {
variant="filled"
className="w-full"
>
Working Draft 5
Working Draft 6
</Button>
</li>
</ul>