diff --git a/app/home/Home.tsx b/app/home/Home.tsx index 57fff0e..597a27d 100644 --- a/app/home/Home.tsx +++ b/app/home/Home.tsx @@ -1,5 +1,11 @@ +import BannerSection from "./components/BannerSection"; + const Home = () => { - return
; + return ( +
+ +
+ ); }; export default Home; diff --git a/app/home/components/BannerSection.tsx b/app/home/components/BannerSection.tsx new file mode 100644 index 0000000..2be0aac --- /dev/null +++ b/app/home/components/BannerSection.tsx @@ -0,0 +1,27 @@ +import banner from "@/assets/images/banner.png"; +import Image from "next/image"; +import { FC } from "react"; + +const BannerSection: FC = () => { + return ( +
+
+ banner +
+
چاپ و بسته بندی به روش هوشمندانه
+
مجــتمع تخصصــــــی
+
+ چــــــاپ و بستــــه بندی دستی و هوشمند{" "} +
+
+
قیمت‌های عالی
+
خدمات مشتریان بی‌نظیر
+
سیستم سفارش‌گیری ساده
+
+
+
+
+ ); +}; + +export default BannerSection; diff --git a/assets/images/banner.png b/assets/images/banner.png new file mode 100644 index 0000000..5745600 Binary files /dev/null and b/assets/images/banner.png differ