diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx
index 05eae74..b02904f 100644
--- a/app/routes/_index.tsx
+++ b/app/routes/_index.tsx
@@ -134,11 +134,23 @@ export default function HomePage() {
id="section1"
className="w-full gap-2 flex flex-col max-w-[100vw] lg:max-w-none lg:gap-5"
>
-
-
تخفیفها
-
- فرصتهایی محدود برای انتخابهای هوشمندانه
-
+
+
+
تخفیفها
+
+ فرصتهایی محدود برای انتخابهای هوشمندانه
+
+
+
+
مشاهده همه
+
+
(page?.results as unknown[]) || []) || [];
+
+ const handleBack = () => safeGoBack(navigate);
+
+ return (
+
+ {/* Header (mobile) */}
+
+
+ {/* Content */}
+
+
+
تخفیفها
+
+ فرصتهایی محدود برای انتخابهای هوشمندانه
+
+
+
+
({
+ id: product?.id || "",
+ title: product?.title || "",
+ images: Array.isArray(product?.imageUrls) ? product.imageUrls : [],
+ basePrice: product?.basePrice || 0,
+ discountPercent: product?.discountPercent || 0,
+ discountPrice: product?.discountPrice || 0,
+ sellerName: product?.sellerName,
+ sellerLogo: product?.sellerLogo,
+ sellerUsername: product?.sellerUsername,
+ }))}
+ fetchNextPage={fetchNextPage}
+ hasNextPage={!!hasNextPage}
+ isFetchingNextPage={isFetchingNextPage}
+ isLoading={isLoading}
+ isError={isError}
+ refetch={refetch}
+ emptyState={{
+ image: ,
+ title: "در حال حاضر تخفیفی موجود نیست",
+ description: "به زودی پیشنهادهای ویژهای اضافه خواهد شد",
+ }}
+ />
+
+
+ );
+}
+
+export const meta: MetaFunction = () => {
+ const title = "تخفیفها | پیشنهادهای ویژه ویترون";
+ const description =
+ "جدیدترین محصولات تخفیفدار ویترون. خرید با بهترین قیمت از فروشگاههای معتبر.";
+ const imageUrl =
+ "https://vitrownstatics.s3.ir-thr-at1.arvanstorage.ir/SVG-06.svg?versionId=";
+
+ return [
+ { title },
+ { name: "description", content: description },
+ {
+ name: "keywords",
+ content: "تخفیف، حراج، فروش ویژه، خرید ارزان، ویترون",
+ },
+ { name: "robots", content: "index, follow" },
+
+ { property: "og:type", content: "website" },
+ { property: "og:title", content: title },
+ { property: "og:description", content: description },
+ { property: "og:image", content: imageUrl },
+ { property: "og:site_name", content: "ویترون" },
+ { property: "og:locale", content: "fa_IR" },
+
+ { name: "twitter:card", content: "summary_large_image" },
+ { name: "twitter:title", content: title },
+ { name: "twitter:description", content: description },
+ ];
+};