enh: add discord and github buttons

This commit is contained in:
Ben Allfree
2026-04-17 05:07:57 -07:00
parent c68ce832b2
commit 54eeaa8978
7 changed files with 71 additions and 34 deletions
+2
View File
@@ -1,5 +1,6 @@
import Footer from "@/components/Footer"
import Navbar from "@/components/Navbar"
import { SocialCornerBadges } from "@/components/SocialCornerBadges"
import { Navigate, Route, Routes, useLocation } from "react-router-dom"
import AdminPage from "./pages/AdminPage"
import HomePage from "./pages/HomePage"
@@ -14,6 +15,7 @@ function Layout({ children }: { children: React.ReactNode }) {
const hideNav = loc.pathname === "/"
return (
<div className="min-h-screen flex flex-col">
<SocialCornerBadges />
{!hideNav && <Navbar />}
<main className="flex-1">{children}</main>
<Footer />