first commit

This commit is contained in:
dekun
2026-06-10 19:59:27 +08:00
commit d141623070
813 changed files with 61301 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react";
import { VERSION } from "@/lib/constant";
function Footer() {
return (
<footer className="mx-auto flex items-center gap-1 text-xs text-muted-foreground/80">
<span className="italic"></span>
<span className="text-muted-foreground/60">·</span>
<span> v{VERSION}</span>
</footer>
);
}
export default Footer;