initial commit

This commit is contained in:
2025-04-09 11:20:41 +02:00
parent a452f7354a
commit fef9984140
1399 changed files with 92621 additions and 6 deletions
@@ -0,0 +1,13 @@
import { AppVersion } from "@/lib/types";
interface VersionBadgeProps {
version: AppVersion;
}
export function VersionBadge({ version }: VersionBadgeProps) {
return (
<div className="flex items-center">
<span className="font-medium text-sm">{version.version}</span>
</div>
);
}