Files
aramejan/app/components/Footer.jsx
T
2025-11-06 18:35:20 +03:30

10 lines
368 B
React
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
function Footer() {
return (
<footer className="py-12 text-center text-gray-500 border-t border-gray-200">
<p className="mb-4">© ۱۴۰۳ آراملند - همراه تو برای یک زندگی آرامتر</p>
<p className="text-sm">ساخته شده با عشق برای مردم ایران</p>
</footer>
);
}
export default Footer;