Files
mehraein-front/app/home/components/ContactCtaSection.tsx
T
hamid zarghami 2c9b43c84a contact section
2026-07-19 15:48:30 +03:30

24 lines
969 B
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 Button from "@/app/components/Button";
import deliveryTruckImage from "@/assets/images/delivery-truck.png";
import { CallCalling } from "iconsax-reactjs";
import Image from "next/image";
import { type FC } from "react";
const ContactCtaSection: FC = () => {
return (
<div className="mt-[120px] flex items-center justify-center gap-6 bg-linear-to-l from-primary/10 to-transparent py-10">
<div className="flex items-center gap-3">
<Image src={deliveryTruckImage} alt="" width={40} height={40} className="size-10 object-contain" />
<p className="text-xl font-bold text-[#0A1B2C] whitespace-nowrap">ارسال سریع به سراسر ایران | مشاوره رایگان قبل از سفارش</p>
</div>
<Button className="gap-2 ps-5 pe-6 font-bold">
<CallCalling size={20} color="currentColor" variant="Linear" />
تماس با ما
</Button>
</div>
);
};
export default ContactCtaSection;