36 lines
1.4 KiB
TypeScript
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" />;
|
|
} |