Files
mehraein-front/app/home/Home.tsx
T
hamid zarghami 2c9b43c84a contact section
2026-07-19 15:48:30 +03:30

39 lines
1.9 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 BannerSection from "./components/BannerSection";
import BestSellerCategories from "./components/BestSellerCategories";
import BlogsSection from "./components/BlogsSection";
import CategorySection from "./components/CategorySection";
import ContactCtaSection from "./components/ContactCtaSection";
import OrderByApplication from "./components/OrderByApplication";
import OrderRegistrationSteps from "./components/OrderRegistrationSteps";
import ProductSection from "./components/ProductSection";
import StepSection from "./components/StepSection";
const Home = () => {
return (
<div className="pb-[120px]">
<BannerSection />
<StepSection />
<CategorySection />
<ProductSection />
<OrderByApplication />
<BestSellerCategories />
<OrderRegistrationSteps />
<BlogsSection />
<div className="mt-[120px] px-[120px]">
<div className="bg-[#004A9005] p-16 w-full rounded-4xl border border-[#E9EEF2]">
<div className="font-bold text-2xl">چاپ جعبه، بستهبندی و محصولات تبلیغاتی با طراحی اختصاصی</div>
<div className="mt-6 leading-6 font-bold text-[#194873] text-sm">
جعبه، اولین چیزی است که مشتری از برند شما میبیند. ما با ارائه خدمات چاپ جعبه، لیبل، استیکر، کارت ویزیت و سایر محصولات تبلیغاتی، به شما کمک میکنیم تا بستهبندی حرفهای و ماندگاری برای
محصولات خود داشته باشید. با استفاده از متریال باکیفیت، طراحی اختصاصی و چاپ دقیق، سفارش شما در کوتاهترین زمان آماده و ارسال میشود.
</div>
</div>
</div>
<ContactCtaSection />
</div>
);
};
export default Home;