Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,7 @@ function FinalCTA() {

/* ---------------- Footer ---------------- */
function Footer() {
const currentYear = new Date().getFullYear();
const XIcon = (p: SVGProps<SVGSVGElement>) => (
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" {...p}>
<path d="M18.244 2H21.5l-7.44 8.506L23 22h-6.86l-5.37-7.02L4.6 22H1.34l7.96-9.1L1 2h7.035l4.86 6.43L18.244 2zm-1.2 18h1.88L7.05 4H5.07l11.974 16z" />
Expand Down Expand Up @@ -899,7 +900,9 @@ function Footer() {
<span>Built for</span>
<img src="/assets/colosseumlogo.png" alt="Colosseum" />
</a>
<span className="footer-copy">© 2026 GH BOUNTY · ALL RIGHTS RESERVED</span>
<span className="footer-copy">
© {currentYear} GH BOUNTY · ALL RIGHTS RESERVED
</span>
</div>
</footer>
);
Expand Down