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
3 changes: 2 additions & 1 deletion web/src/components/LandingPage/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from "react";
import { Github } from "lucide-react";

const Footer = () => {
const currentYear = new Date().getFullYear()
return (
<footer id="footer" className="bg-black text-gray-400 py-12">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
Expand Down Expand Up @@ -87,7 +88,7 @@ const Footer = () => {

{/* Copyright */}
<p className="text-center text-xs pt-8 border-t border-gray-800 mt-8">
© 2025 THE STABLE ORDER. All rights reserved.
© {currentYear} THE STABLE ORDER. All rights reserved.
</p>
</div>
</footer>
Expand Down