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

36 lines
1.4 KiB
TypeScript

import type { MetaFunction } from "@remix-run/node";
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 ProfileThreads() {
return <ThreadsPage type="user" />;
}