feat: statusbalk met versie en builddatum

Voegt sticky statusbalk toe aan de onderkant van de app met:
- Copyright melding
- App-versie uit package.json (NEXT_PUBLIC_APP_VERSION)
- Builddatum ingesteld op het moment van de build (NEXT_PUBLIC_BUILD_DATE)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Janpeter Visser 2026-04-24 17:12:20 +02:00
parent 0bf635eca1
commit 71e4ebc22d
3 changed files with 29 additions and 5 deletions

View file

@ -1,7 +1,11 @@
import type { NextConfig } from "next";
import type { NextConfig } from "next"
import pkg from "./package.json"
const nextConfig: NextConfig = {
/* config options here */
};
env: {
NEXT_PUBLIC_APP_VERSION: pkg.version,
NEXT_PUBLIC_BUILD_DATE: new Date().toISOString(),
},
}
export default nextConfig;
export default nextConfig