aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/nuldoc/nuldoc-src/components/GlobalFooter.tsx
blob: 6a8d8f6d98e9774ad6d9b8ca7fd169203a7422da (plain)
1
2
3
4
5
6
7
8
9
import { Config } from "../config.ts";

export default function GlobalFooter({ config }: { config: Config }) {
  return (
    <footer className="footer">
      {`&copy; ${config.site.copyrightYear} ${config.blog.author}`}
    </footer>
  );
}