Skip to content

Commit e213d34

Browse files
authored
Fixing rights year static to dynamic (#620)
1 parent a29019f commit e213d34

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
@@ -301,7 +301,7 @@ export default function LandingPage() {
301301
</div>
302302
<hr className="border-zinc-300" />
303303
<div className="text-center text-sm py-3">
304-
&copy; 2024 <strong>drawDB</strong> - All right reserved.
304+
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
305305
</div>
306306
</div>
307307
);

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)