base banner section
This commit is contained in:
+7
-1
@@ -1,5 +1,11 @@
|
||||
import BannerSection from "./components/BannerSection";
|
||||
|
||||
const Home = () => {
|
||||
return <div></div>;
|
||||
return (
|
||||
<div>
|
||||
<BannerSection />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
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;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 875 KiB |
Reference in New Issue
Block a user