web-asuransi-aman/components/landing-page/footer.tsx

10 lines
248 B
TypeScript
Raw Normal View History

2025-09-23 01:13:46 +00:00
export default function Footer() {
return (
<footer className="w-full ">
<div className="max-w-screen-xl mx-auto bg-[#222] text-white py-4 px-4">
<p className="text-sm">Theme by Silk Themes</p>
</div>
</footer>
);
}