import React from 'react' import { Metadata } from 'next' import Head from 'next/head' import './globals.css' import { GeistSans } from 'geist/font/sans' import AnimatedTitle from '../components/AnimatedTitle' import I18nProvider from '../components/I18nProvider' export const metadata: Metadata = { description: "The Internet home of Aidan. Come on in!", openGraph: { type: "website", url: "https://aidxn.cc", title: "aidxn.cc", description: "The Internet home of Aidan. Come on in!", siteName: "aidxn.cc", images: [ { url: "https://aidxn.cc/android-icon-192x192.png", width: 192, height: 192, }, ], }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (