Files
mehraein-front/app/home/components/BannerSection.tsx
T
2026-07-14 16:12:56 +03:30

28 lines
1.2 KiB
TypeScript
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.
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 banner from "@/assets/images/banner.png";
import Image from "next/image";
import { FC } from "react";
const BannerSection: FC = () => {
return (
<div className="w-full h-[500px]">
<div className="relative">
<Image src={banner} alt="banner" width={2000} height={574} className="w-full max-h-[574px] object-cover" />
<div className="absolute h-full right-[120px] top-0 bottom-0 m-auto flex flex-col justify-center">
<div className="text-base">چاپ و بسته بندی به روش هوشمندانه</div>
<div className="text-2xl font-black mt-4">مجــتمع تخصصــــــی</div>
<div className="text-2xl font-black mt-4">
چــــــاپ و بستــــه بندی <span className="text-primary">دستی</span> و <span className="text-primary">هوشمند</span>{" "}
</div>
<div className="mt-4 text-base flex flex-col gap-3">
<div>قیمتهای عالی</div>
<div>خدمات مشتریان بینظیر</div>
<div>سیستم سفارشگیری ساده</div>
</div>
</div>
</div>
</div>
);
};
export default BannerSection;