Files
DefectingCat.github.io/components/Footer.tsx
DefectingCat 1bb382409b Modify styles
* add table of contents plugin
2022-03-23 21:05:57 +08:00

19 lines
389 B
TypeScript

import { FC } from 'react';
const nowDay = new Date().getFullYear();
const Footer: FC = () => {
return (
<>
<footer className="max-w-6xl px-10 mx-auto lg:px-0">
<div className="h-[2px] bg-slate-500"></div>
<div className="py-4">
&copy; 2022-{nowDay} Powered by Next.js 💙 xfy
</div>
</footer>
</>
);
};
export default Footer;