2024-04-06 20:40:25 +02:00
|
|
|
import { getVersion } from "@/utils/getVersion"
|
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
import { FooterText } from "./FooterText"
|
|
|
|
import { FooterVersion } from "./FooterVersion"
|
2023-07-31 19:06:46 +02:00
|
|
|
|
|
|
|
export const Footer = async (): Promise<JSX.Element> => {
|
2024-04-06 20:40:25 +02:00
|
|
|
const version = await getVersion()
|
2023-07-31 19:06:46 +02:00
|
|
|
|
|
|
|
return (
|
2023-10-23 23:11:59 +02:00
|
|
|
<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">
|
2023-07-31 19:06:46 +02:00
|
|
|
<FooterText />
|
|
|
|
<FooterVersion version={version} />
|
|
|
|
</footer>
|
|
|
|
)
|
|
|
|
}
|