Files
zhimingge/components/footer.tsx
T
2026-06-10 19:59:27 +08:00

15 lines
386 B
TypeScript

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;