import type { Metadata } from 'next' import { getLocale } from 'next-intl/server' export const metadata: Metadata = { title: 'Contact Us', description: 'Get in touch with Trump Alpha for questions, feedback, or support. We respond within 24 hours.', alternates: { canonical: `${process.env.NEXT_PUBLIC_SITE_URL || 'https://trumpsignal.com'}/en/contact`, }, robots: { index: false, follow: true }, // no SEO value in indexing a contact form } export default async function ContactPage() { const locale = await getLocale() const isZh = false // i18n shelved — Chinese branches kept as dead code for future revival; see messages/zh.json return (
{isZh ? '问题、反馈或支持请求都可以从这里发来。' : 'Questions, feedback, or support requests.'}