mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 20:01:36 +00:00
23 lines
602 B
TypeScript
23 lines
602 B
TypeScript
import siteConfig from "config/site.config";
|
|
|
|
export default function Footer() {
|
|
const currentYear = new Date().getFullYear();
|
|
|
|
return (
|
|
<div className='flex w-full items-center justify-center gap-2 py-1'>
|
|
<span className='text-xs font-semibold'>
|
|
{currentYear} {siteConfig.footerText} - Powered by{" "}
|
|
<a
|
|
className={"link"}
|
|
href={"https://www.github.com/mbaharip/next-gdrive-index"}
|
|
target={"blank"}
|
|
rel={"noreferrer noopener"}
|
|
>
|
|
next-gdrive-index
|
|
</a>{" "}
|
|
❤️
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|