diff --git a/app/layout.tsx b/app/layout.tsx
index 443613e..89d9395 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -49,7 +49,7 @@ export default async function RootLayout({
diff --git a/biome.json b/biome.json
index 9a308e8..074db76 100644
--- a/biome.json
+++ b/biome.json
@@ -87,6 +87,6 @@
"globals": ["Bun"]
},
"files": {
- "ignore": ["node_modules", ".next", ".output", "out"]
+ "ignore": ["node_modules", ".next", ".output", "out", "public/pl.js"]
}
}
diff --git a/components/Header.tsx b/components/Header.tsx
index 0e5876d..d05d77b 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -51,7 +51,8 @@ export const Header = forwardRef, { className?: string }>(
ref={ref}
className={clsx(
className,
- "fixed bg-construction bg-opacity-10 [background-size:57px_57px] 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",
+ // 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",
!isInsideMobileNavigation &&
"backdrop-blur-sm lg:left-72 xl:left-80 dark:backdrop-blur",
isInsideMobileNavigation
diff --git a/components/Logo.tsx b/components/Logo.tsx
index 5b707ca..13dd43d 100644
--- a/components/Logo.tsx
+++ b/components/Logo.tsx
@@ -1,6 +1,7 @@
import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
-import { Badge } from "./Metadata";
+// Uncomment this on dev branches
+// import { Badge } from "./Metadata";
export function Logo(props: ComponentPropsWithoutRef<"div">) {
return (
@@ -17,7 +18,7 @@ export function Logo(props: ComponentPropsWithoutRef<"div">) {
className="h-full rounded-sm"
/>
- Versia Protocol Dev
+ Versia Protocol {/* Dev */}
);