We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32af13b commit 01f9b63Copy full SHA for 01f9b63
1 file changed
src/components/footer.tsx
@@ -29,6 +29,7 @@ const sections = [
29
];
30
31
export default function Footer() {
32
+ const currentYear = new Date().getFullYear();
33
return (
34
<section className="border-t relative overflow-hidden py-10">
35
<div className="container mx-auto max-w-7xl px-8">
@@ -59,7 +60,7 @@ export default function Footer() {
59
60
))}
61
</div>
62
<div className="mt-24 flex flex-col justify-between gap-4 border-t pt-8 text-sm font-medium text-muted-foreground md:flex-row md:items-center">
- <p>© 2025 PyConKE. All rights reserved.</p>
63
+ <p>© {currentYear} PyConKE. All rights reserved.</p>
64
<ul className="flex gap-4">
65
<li className="underline hover:text-primary">
66
<a href="/terms-and-conditions"> Terms and Conditions</a>
0 commit comments