From 04e96d2330e0940ce5d20ee8fffd705976583b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20De=20Le=C3=B3n?= Date: Tue, 16 Jun 2026 14:20:53 -0600 Subject: [PATCH 1/3] =?UTF-8?q?style(header):=20fondo=20m=C3=A1s=20oscuro?= =?UTF-8?q?=20(black/80)=20con=20blur=20m=C3=A1s=20fuerte=20(xl)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index 789b5d0..c208228 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -3,7 +3,7 @@ import { locales, type Locale } from "@/i18n/config"; export default function Header({ lang }: { lang: Locale }) { return ( -
+
Date: Tue, 16 Jun 2026 14:22:06 -0600 Subject: [PATCH 2/3] fix(header): z-50 para que quede por encima de todo el contenido --- src/components/layout/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index c208228..a24ecb5 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -3,7 +3,7 @@ import { locales, type Locale } from "@/i18n/config"; export default function Header({ lang }: { lang: Locale }) { return ( -
+
Date: Tue, 16 Jun 2026 14:25:21 -0600 Subject: [PATCH 3/3] =?UTF-8?q?feat(header):=20nav=20con=20botones=20App,?= =?UTF-8?q?=20Docs=20y=20GitHub=20(tem=C3=A1tica=20de=20la=20web)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/Header.tsx | 87 +++++++++++++++++++++++--------- 1 file changed, 64 insertions(+), 23 deletions(-) diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index a24ecb5..3816802 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -1,6 +1,12 @@ import Link from "next/link"; import { locales, type Locale } from "@/i18n/config"; +const REPO = "https://github.com/DataDave-Dev/codeviz"; +const DOCS = `${REPO}/blob/main/README.md`; + +const linkClass = + "flex items-center gap-1.5 px-3 py-1.5 rounded-full text-[13px] text-muted hover:text-fg hover:bg-white/[0.06] transition-colors"; + export default function Header({ lang }: { lang: Locale }) { return (
@@ -11,32 +17,67 @@ export default function Header({ lang }: { lang: Locale }) { CodeViz - +
); }