diff --git a/src/ui/components/internal/site-footer.tsx b/src/ui/components/internal/site-footer.tsx index c59f1fa..ecf5221 100644 --- a/src/ui/components/internal/site-footer.tsx +++ b/src/ui/components/internal/site-footer.tsx @@ -1,13 +1,17 @@ import { siteConfig } from '@/site.config'; -export function SiteFooter() { - const buildCopyrightYear = (): string => { - if (siteConfig.copyright.initialYear == new Date().getFullYear()) { - return `(${new Date().getFullYear()})`; - } - return `(${siteConfig.copyright.initialYear}-${new Date().getFullYear()})`; - }; + + + + + + + + +export function SiteFooter() { + const copyrightHolder = + siteConfig.copyright.company || siteConfig.author.name; return (