Skip to content

Commit 5805f72

Browse files
NithinU2802ewqazxc
authored andcommitted
Fixing rights year static to dynamic (drawdb-io#620)
1 parent 99b3e71 commit 5805f72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/pages/BugReport.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export default function BugReport() {
245245
} my-1`}
246246
/>
247247
<div className="text-center text-sm py-3">
248-
&copy; 2024 <strong>drawDB</strong> - All right reserved.
248+
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
249249
</div>
250250
</>
251251
);

src/pages/LandingPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export default function LandingPage() {
260260
</div>
261261
<hr className="border-zinc-300" />
262262
<div className="text-center text-sm py-3">
263-
&copy; 2024 <strong>drawDB</strong> - All right reserved.
263+
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
264264
</div>
265265
</div>
266266
);

src/pages/Templates.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export default function Templates() {
192192
</div>
193193
<hr className="border-zinc-300 my-1" />
194194
<div className="text-center text-sm py-3">
195-
&copy; 2024 <strong>drawDB</strong> - All right reserved.
195+
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
196196
</div>
197197
</div>
198198
);

0 commit comments

Comments
 (0)