Fixing rights year static to dynamic (#620)

This commit is contained in:
Nithin U
2025-10-07 01:38:27 +05:30
committed by GitHub
parent a29019f792
commit e213d34c03
3 changed files with 3 additions and 3 deletions

View File

@@ -245,7 +245,7 @@ export default function BugReport() {
} my-1`}
/>
<div className="text-center text-sm py-3">
&copy; 2024 <strong>drawDB</strong> - All right reserved.
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
</div>
</>
);

View File

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

View File

@@ -192,7 +192,7 @@ export default function Templates() {
</div>
<hr className="border-zinc-300 my-1" />
<div className="text-center text-sm py-3">
&copy; 2024 <strong>drawDB</strong> - All right reserved.
&copy; {new Date().getFullYear()} <strong>drawDB</strong> - All rights reserved.
</div>
</div>
);