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

11 lines
275 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 Header() {
return (
<nav className="py-6 px-8">
<div className="max-w-6xl mx-auto flex justify-between items-center">
<div className="text-2xl font-bold text-teal-700">آراملند</div>
</div>
</nav>
);
}
export default Header;