Untitled

 avatar
unknown
plain_text
10 days ago
366 B
1
Indexable
export default function Footer() {
  return (
     <footer className="bg-gray-800 py-8">
       <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
         <div className="text-center">
           <p className="text-gray-400">
             &copy; 2025 Molina. All rights reserved.
           </p>
         </div>
       </div>
     </footer>
  );
}
Leave a Comment