feat: add git commit hash to footer for version tracking

This commit is contained in:
2026-03-31 11:44:13 -07:00
parent f66242d569
commit 0ae4a171fd
3 changed files with 19 additions and 1 deletions
+2
View File
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import { SessionProvider } from "@/components/SessionProvider";
import Footer from "@/components/Footer";
const inter = {
variable: "--font-inter",
@@ -24,6 +25,7 @@ export default function RootLayout({
<body className="min-h-full flex flex-col">
<SessionProvider>
{children}
<Footer />
</SessionProvider>
</body>
</html>