16 lines
433 B
TypeScript
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">
|
|
© {getCurrentYear()} Autonomic. Template distributed under AGPL 3.0.
|
|
</p>
|
|
{/* <ThemeSwitcher /> */}
|
|
</footer>
|
|
)
|
|
}
|