diff --git a/services/console/src/components/console/perf/plot/PlotHeader.tsx b/services/console/src/components/console/perf/plot/PlotHeader.tsx index 5d747784e..53b5f9078 100644 --- a/services/console/src/components/console/perf/plot/PlotHeader.tsx +++ b/services/console/src/components/console/perf/plot/PlotHeader.tsx @@ -215,7 +215,12 @@ const EmbedPlotHeader = (props: Props) => {
{/* biome-ignore lint/a11y/noBlankTarget: internal */} - 🐰 Bencher + 🐰 Bencher {title()}
diff --git a/services/console/src/components/navbar/GitHubLink.tsx b/services/console/src/components/navbar/GitHubLink.tsx new file mode 100644 index 000000000..2f7ca79df --- /dev/null +++ b/services/console/src/components/navbar/GitHubLink.tsx @@ -0,0 +1,25 @@ +import { Show } from "solid-js"; +import { authUser } from "../../util/auth"; +import { BENCHER_GITHUB_URL } from "../../util/ext"; + +const GitHubLink = () => { + return ( + + GitHub + + } + > +
+
+ ); +}; + +export default GitHubLink; diff --git a/services/console/src/components/navbar/Navbar.astro b/services/console/src/components/navbar/Navbar.astro index 5402fe6ab..9e85cb55a 100644 --- a/services/console/src/components/navbar/Navbar.astro +++ b/services/console/src/components/navbar/Navbar.astro @@ -10,6 +10,8 @@ import { BENCHER_NAVBAR_BURGER_ID, BENCHER_NAVBAR_MENU_ID } from "./id"; import ThemeToggle from "./theme/ThemeToggle.astro"; import NavbarHelp from "./NavbarHelp.astro"; import AuthButtons from "./AuthButtons"; +import PricingLink from "./PricingLink"; +import GitHubLink from "./GitHubLink"; ---