+
scroll
-
+
);
diff --git a/web/components/Nav.tsx b/web/components/Nav.tsx
index 788d6e8..fb19732 100644
--- a/web/components/Nav.tsx
+++ b/web/components/Nav.tsx
@@ -71,7 +71,7 @@ export default function Nav() {
className="bg-bg-deep/85 backdrop-blur-xl backdrop-saturate-[1.2] border-b border-border"
>
-
+
-
- {NAV_ITEMS.map((item) => (
-
- {item.label}
-
- ))}
-
+
+ {NAV_ITEMS.map((item) => {
+ const isCurrent = item.href.startsWith("/")
+ ? pathname === item.href || pathname?.startsWith(`${item.href}/`)
+ : false;
+ return (
+
+ {item.label}
+
+ );
+ })}
+
GitHub
diff --git a/web/components/TrustStrip.tsx b/web/components/TrustStrip.tsx
index 9e4deae..72172ef 100644
--- a/web/components/TrustStrip.tsx
+++ b/web/components/TrustStrip.tsx
@@ -1,6 +1,6 @@
"use client";
-import { KPI, KPIGroup } from "@heroui-pro/react";
+import { KPI } from "@heroui-pro/react";
import { Code2, Layers, Plug, Sparkles } from "lucide-react";
const STATS = [
@@ -51,48 +51,46 @@ export default function TrustStrip() {
-