import type { Metadata } from "next"; import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Tradvio | Earn $3K+/mo Posting Trading Videos", description: "Join hundreds of creators earning $3,000+ per month posting 20-second trading reaction videos on TikTok & Instagram. No experience needed. Invite-only platform.", keywords: "creator economy, TikTok earning, trading content, affiliate marketing, social media income", metadataBase: new URL("https://tradvio.com"), alternates: { canonical: "https://tradvio.com" }, openGraph: { title: "Tradvio | Earn $3K+/mo Posting Trading Videos", description: "Join hundreds of creators earning $3,000+ per month posting 20-second trading reaction videos on TikTok & Instagram. No experience needed.", url: "https://tradvio.com", siteName: "Tradvio", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/young-content-creator-using-cellphone-film-room-tour-subscribers_482257-118706.jpg", alt: "Tradvio Creator Platform" }] }, twitter: { card: "summary_large_image", title: "Tradvio | Earn $3K+/mo Posting Trading Videos", description: "Join hundreds of creators earning $3,000+ per month posting 20-second trading reaction videos", images: ["https://img.b2bpic.net/free-photo/young-content-creator-using-cellphone-film-room-tour-subscribers_482257-118706.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}