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 ; }