From 67f8872cfc7aa94e9d1e20363dd8878caa081d3b Mon Sep 17 00:00:00 2001 From: vltbaudbot <264001112+vltbaudbot@users.noreply.github.com> Date: Wed, 13 May 2026 00:59:45 +0000 Subject: [PATCH] feat: add GitHub repo link to header Add a GitHub icon next to the Benchmarks logo that links back to https://github.com/vltpkg/benchmarks, making it easy for visitors to find the source code and methodology. --- app/src/components/header.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/src/components/header.tsx b/app/src/components/header.tsx index e0fdd322c5..9859bc6f4f 100644 --- a/app/src/components/header.tsx +++ b/app/src/components/header.tsx @@ -3,7 +3,7 @@ import { useLocation, NavLink } from "react-router"; import { PackageManagerFilter } from "@/components/package-manager-filter"; import { FixtureFilter } from "@/components/fixture-filter"; import { VariationDropdown } from "@/components/variation-dropdown"; -import { Benchmarks, Package, StopWatch, Database } from "@/components/icons"; +import { Benchmarks, Github, Package, StopWatch, Database } from "@/components/icons"; import { Button } from "@/components/ui/button"; import { format } from "date-fns"; import { @@ -247,6 +247,15 @@ const HeaderLogo = forwardRef>( )} )} + + + ); },