import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'AI 工具返利联盟 - 赚取佣金', description: '加入宇之然 AI 工具返利联盟,通过推荐 AI 工具赚取佣金。我们提供详细的返佣数据追踪,支持多种 AI 工具联盟合作。', keywords: ['AI工具返利', 'AI工具联盟', 'AI工具佣金', 'ChatGPT返利', 'Claude返利', 'Midjourney返利', 'AI工具推广', 'AI联盟计划', 'AI返佣', 'AI工具代理'], robots: { index: true, follow: true, googleBot: { index: true, follow: true, }, }, openGraph: { title: 'AI 工具返利联盟 - 赚取佣金', description: '加入宇之然 AI 工具返利联盟,通过推荐 AI 工具赚取佣金。', type: 'website', url: 'https://yuzhiran.com/affiliate', images: [ { url: '/images/og-image.png', width: 1200, height: 630, alt: 'AI 工具返利联盟', }, ], }, twitter: { card: 'summary_large_image', title: 'AI 工具返利联盟 - 赚取佣金', description: '加入宇之然 AI 工具返利联盟,通过推荐 AI 工具赚取佣金。', images: ['/images/og-image.png'], }, }; export default function AffiliateLayout({ children }: { children: React.ReactNode }) { return children; }