mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
import { getVersion } from "@/utils/getVersion"
|
|
|
|
import { FooterText } from "./FooterText"
|
|
import { FooterVersion } from "./FooterVersion"
|
|
|
|
export const Footer = async (): Promise<JSX.Element> => {
|
|
const version = await getVersion()
|
|
|
|
return (
|
|
<footer className="flex flex-col items-center justify-center border-t-2 border-gray-600 bg-white py-6 text-lg dark:border-gray-400 dark:bg-black">
|
|
<FooterText />
|
|
<FooterVersion version={version} />
|
|
</footer>
|
|
)
|
|
}
|