import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "arcrun — Stop fighting OAuth", description: "One API key. Every service. Works anywhere. arcrun handles Google, Notion, GitHub, Slack authentication so your code doesn't have to.", openGraph: { title: "arcrun — Stop fighting OAuth", description: "One API key. Every service. Works anywhere.", url: "https://arcrun.dev", siteName: "arcrun", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }