We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4942cf8 commit 8c4dac3Copy full SHA for 8c4dac3
1 file changed
src/constants/footer.tsx
@@ -3,6 +3,8 @@ import { LuGithub } from "react-icons/lu";
3
import { RiTwitterXFill } from "react-icons/ri";
4
import { URLS } from "./urls";
5
6
+const currentYear = new Date().getFullYear();
7
+
8
export interface FooterLink {
9
readonly label: string;
10
readonly href: string;
@@ -121,7 +123,7 @@ export const FOOTER_CONTENT = {
121
123
},
122
124
125
legal: {
- copyright: "© 2025",
126
+ copyright: `© ${currentYear}`,
127
privacyPolicy: {
128
label: "Privacy Policy",
129
href: URLS.zondaxPrivacy,
0 commit comments