import type { Metadata } from "next"; import ArchivePage from "../../components/ArchivePage"; export const metadata: Metadata = { title: "فروشگاه تخصصی مکمل‌های دارویی - کانینا ایران", description: "خرید آنلاین انواع مکمل‌های درمانی، مفاصل و استخوان، گوارش و ایمنی، ویتامین‌ها و مراقبت‌های ویژه سگ و گربه با تضمین اصالت و گواهی سلامت دامپزشکی.", alternates: { canonical: "/shop", }, openGraph: { title: "فروشگاه تخصصی مکمل‌های دارویی - کانینا ایران", description: "خرید آنلاین انواع مکمل‌های درمانی، مفاصل و استخوان، گوارش و ایمنی، ویتامین‌ها و مراقبت‌های ویژه سگ و گربه.", url: "https://canina-iran.com/shop", siteName: "کانینا ایران", locale: "fa_IR", type: "website", } }; export default async function Shop({ searchParams }: { searchParams: Promise<{ [key: string]: string | string[] | undefined }> }) { const resolvedParams = await searchParams; const category = typeof resolvedParams.category === 'string' ? resolvedParams.category : "all"; const search = typeof resolvedParams.search === 'string' ? resolvedParams.search : ""; return ; }