Vitron-Front/app/routes/store.$storeId.threads._index.tsx
2026-04-29 01:44:16 +03:30

39 lines
1.5 KiB
TypeScript

import type { MetaFunction } from "@remix-run/node";
import { useParams } from "@remix-run/react";
import ThreadsPage from "../components/thread/ThreadsPage";
export const meta: MetaFunction = () => {
return [
{ title: "پیام‌ها - ویترون" },
{
name: "description",
content:
"مدیریت پیام‌ها و گفتگوهای شما در ویترون. پیگیری مکالمات با فروشندگان و پشتیبانی.",
},
{
name: "keywords",
content: "پیام، گفتگو، مکالمه، پشتیبانی، فروشنده، ویترون",
},
{ name: "robots", content: "noindex, follow" },
{ property: "og:title", content: "پیام‌ها - ویترون" },
{
property: "og:description",
content:
"مدیریت پیام‌ها و گفتگوهای شما در ویترون. پیگیری مکالمات با فروشندگان و پشتیبانی.",
},
{ property: "og:type", content: "website" },
{ name: "twitter:card", content: "summary" },
{ name: "twitter:title", content: "پیام‌ها - ویترون" },
{
name: "twitter:description",
content:
"مدیریت پیام‌ها و گفتگوهای شما در ویترون. پیگیری مکالمات با فروشندگان و پشتیبانی.",
},
];
};
export default function StoreThreads() {
const { storeId } = useParams();
return <ThreadsPage type="store" storeId={storeId} />;
}