mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-09-05 05:55:37 +05:00
28 lines
569 B
TypeScript
28 lines
569 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Kentai Radiquum",
|
|
description: "Developer, Amateur Photographer, Self-Hosting Admirer",
|
|
openGraph: {
|
|
images: [
|
|
{
|
|
url: "https://radiquum.wah.su/images/opengraph.png",
|
|
width: 1200,
|
|
height: 675,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`antialiased`}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|