Files
mehraein-front/app/home/components/OrderRegistrationSteps.tsx
2026-07-19 16:29:37 +03:30

21 lines
633 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 ImageSrc from "@/assets/images/OrderRegistrationSteps.png";
import Image from "next/image";
import { FC } from "react";
const OrderRegistrationSteps: FC = () => {
return (
<div className="px-4 py-12 sm:px-8 sm:py-16 lg:p-[120px] bg-[#F1F6FA] mt-12 sm:mt-16 lg:mt-[120px]">
<div className="text-lg sm:text-2xl font-bold">سفارش بر اساس کاربرد</div>
<Image
src={ImageSrc}
alt="Order Registration Steps"
width={1000}
height={1000}
className="w-full mt-8 sm:mt-12 h-auto object-contain"
/>
</div>
);
};
export default OrderRegistrationSteps;