import type { Metadata, Viewport } from 'next'; import './globals.css'; export const metadata: Metadata = { title: '⛧', // description: '', openGraph: { // title: '⛧', // description: '', images: [ { url: 'https://neru.rip/img/ok.jpg', width: 734, height: 1104, }, ], } }; export const viewport: Viewport = { themeColor: '#fbcfe8', } export default function RootLayout({ children }: Readonly<{ children: React.ReactNode; }>) { return ( <> {children} ); }