redirecter for ao3 that adds opengraph metadata
1import '@fontsource-variable/bricolage-grotesque'
2import '@fontsource/stack-sans-notch'
3import "./globals.css"
4
5export const metadata = {
6 title: "fixAO3",
7 description: "fixes yr ao3",
8};
9
10export default function RootLayout({ children }) {
11 return (
12 <html lang="en">
13 <body>
14 <div id="page">
15 <h1>fixAO3</h1>
16 {children}
17 </div>
18 </body>
19 </html>
20 )
21}