Files
2026-07-19 16:09:33 +03:30

23 lines
850 B
TypeScript
Raw Permalink 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 { TickCircle } from "iconsax-reactjs";
import { type FC } from "react";
const values = ["تضمین کیفیت چاپ", "طراحی اختصاصی", "تحویل سریع", "پشتیبانی قبل و بعد از خرید", "ارسال به سراسر ایران"];
const FooterTrustValues: FC = () => {
return (
<div className="flex flex-col gap-3">
<h3 className="text-sm font-bold text-[#0A1B2C]">اعتماد شما، سرمایه ما</h3>
<ul className="flex flex-col gap-2.5">
{values.map((value) => (
<li key={value} className="flex items-center gap-2 text-sm text-[#3A4147]">
<TickCircle size={18} color="currentColor" variant="Bold" className="shrink-0 text-primary" />
{value}
</li>
))}
</ul>
</div>
);
};
export default FooterTrustValues;