TypeScript · 335 bytes Raw Blame History
1 export default function Footer() {
2 return (
3 <footer className="bg-gray-900 text-white py-8 mt-16">
4 <div className="max-w-5xl mx-auto px-4 text-center">
5 <p className="text-sm">
6 © {new Date().getFullYear()} matthew forrester wolffe, Richard Colwell Wolffe Jr.
7 </p>
8 </div>
9 </footer>
10 );
11 }