import type { Metadata } from "next"; import "./globals.css"; import Nav from "@/components/Nav"; const SITE_URL = "https://ares-six-peach.vercel.app"; export const metadata: Metadata = { metadataBase: new URL(SITE_URL), title: { default: "ARES — Automated Gold Trading Bot", template: "%s · ARES", }, description: "Live forward-test results for ARES, an M5 Momentum FVG scalper built in Rust. Trades XAUUSDm with EMA-20 trend filter and automated risk management.", keywords: [ "algorithmic trading", "gold trading bot", "XAUUSD EA", "MT5 expert advisor", "Rust trading bot", "FVG scalper", "forex robot", "automated trading", "ICT strategy", ], authors: [{ name: "Romy Saputra Sihananda" }], creator: "Romy Saputra Sihananda", robots: { index: true, follow: true, googleBot: { index: true, follow: true, "max-snippet": -1, "max-image-preview": "large" }, }, openGraph: { type: "website", url: SITE_URL, siteName: "ARES Trading Bot", title: "ARES — Automated Gold Trading Bot", description: "Live forward-test · M5 Momentum FVG scalper · XAUUSDm · Built in Rust", locale: "en_US", }, twitter: { card: "summary_large_image", title: "ARES — Automated Gold Trading Bot", description: "Live forward-test · M5 Momentum FVG scalper · XAUUSDm · Built in Rust", }, icons: { icon: "/favicon.svg", shortcut: "/favicon.svg", }, verification: { google: "DRtj7whxZ3kX0-C9qswORTfHptZPTX9mrqBqwvcN7j8", }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (