Skip to content

Commit 24f792b

Browse files
committed
fix: add dynamic copyright year in documents footer
1 parent d51267b commit 24f792b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/frontend/src/modules/shared/components/layout/CopyrightFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { cn } from '@web/lib/utils';
44

55
export const CopyrightFooter = ({ className }: { className?: string }) => (
66
<p className={cn('mx-auto text-zinc-600 text-xs', className)}>
7-
© 2024{' '}
7+
© {new Date().getFullYear()}{' '}
88
<Link href='https://opennbs.org/' className='hover:underline'>
99
OpenNBS
1010
</Link>

0 commit comments

Comments
 (0)