import type { Metadata } from "next"; import "./globals.css"; import Nav from "@/components/Nav"; export const metadata: Metadata = { title: "ARES — Automated Trading Bot", description: "Live forward-test results for ARES, an M5 Momentum FVG scalper built in Rust.", openGraph: { title: "ARES Trading Bot", description: "Live forward-test · M5 Momentum FVG · XAUUSDm", type: "website", }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (