priyansh-nagar's picture
Upload 64 files
61fa642 verified
raw
history blame contribute delete
351 Bytes
export function Footer() {
return (
<footer className="bg-gray-900 text-gray-300 py-8 px-6 lg:px-8">
<div className="mx-auto max-w-7xl">
<div className="text-center">
<p className="text-sm text-gray-400">
© 2026 DeepTrust. All rights reserved.
</p>
</div>
</div>
</footer>
);
}