diff --git a/app/home/Home.tsx b/app/home/Home.tsx index 597a27d..8d4ab5a 100644 --- a/app/home/Home.tsx +++ b/app/home/Home.tsx @@ -1,9 +1,11 @@ import BannerSection from "./components/BannerSection"; +import StepSection from "./components/StepSection"; const Home = () => { return (
+
); }; diff --git a/app/home/components/BannerSection.tsx b/app/home/components/BannerSection.tsx index 2881333..dea36e9 100644 --- a/app/home/components/BannerSection.tsx +++ b/app/home/components/BannerSection.tsx @@ -6,7 +6,7 @@ import { FC } from "react"; const BannerSection: FC = () => { return ( -
+
banner
diff --git a/app/home/components/StepSection.tsx b/app/home/components/StepSection.tsx new file mode 100644 index 0000000..0337713 --- /dev/null +++ b/app/home/components/StepSection.tsx @@ -0,0 +1,35 @@ +import { ColorSwatch, Element4, LampCharge, Magicpen, Setting2, TruckFast } from "iconsax-reactjs"; +import { FC } from "react"; + +const StepSection: FC = () => { + return ( +
+
+ +
تحلیل نیاز برند
+
+
+ +
طراحی و آماده‌سازی فایل
+
+
+ +
انتخاب فناوری و متریال
+
+
+ +
کنترل رنگ و نمونه‌گیری
+
+
+ +
عملیات تکمیلی
+
+
+ +
تحویل به موقع
+
+
+ ); +}; + +export default StepSection;