/* eslint-disable @next/next/no-page-custom-font */ import "./globals.css"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Osborne", description: "Real-time multi-user text editor with rooms.", openGraph: { title: "Osborne", description: "Real-time multi-user text editor with rooms.", url: "https://o.webark.in", siteName: "Osborne", images: [ { url: "https://o.webark.in/og-image.png", width: 1500, height: 768, alt: "Osborne", }, ], locale: "en_US", type: "website", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children} ); }