nextload/src/components/Footer.tsx
tobias f1ac6429c7
Some checks failed
continuous-integration/drone/push Build is failing
Disable theme switcher for now
2024-06-24 22:07:16 +02:00

16 lines
433 B
TypeScript

/* import ThemeSwitcher from '@/components/ThemeSwitcher' */
import { getCurrentYear } from '@/utils/date'
type Props = {}
export default function Footer({}: Props) {
return (
<footer className="flex justify-between items-center py-4">
<p className="text-lg font-semibold">
&copy; {getCurrentYear()} Autonomic. Template distributed under AGPL 3.0.
</p>
{/* <ThemeSwitcher /> */}
</footer>
)
}