15 lines
386 B
TypeScript
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;
|