Files
mehraein-front/app/shared/Header.tsx
T
hamid zarghami 3be247ecff top of header
2026-07-14 12:56:53 +03:30

30 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Profile, Truck } from "iconsax-reactjs";
const Header = () => {
return (
<div className="px-[120px] h-12 bg-secondary flex items-center justify-between">
<div className="flex gap-2 items-center">
<span className="text-primary flex items-center gap-2">
<Truck size={24} color="currentColor" />
<div className="text-[#3A4147] text-sm font-bold">ارسال رایگان برای خرید بالای ۱۰۰ میلیون تومان</div>
</span>
</div>
<div className="flex text-sm font-bold gap-2 items-center">
<span className="text-primary">20%</span>
<span>تخفیف برای اولین سفارش خود دریافت کنید |</span>
<span>
کد تخفیف : <span className="text-primary">FIRSTORDER</span>
</span>
</div>
<div className="flex gap-2 items-center">
<Profile size={24} color="currentColor" />
<div>سلام حمید</div>
</div>
</div>
);
};
export default Header;