mirror of
https://github.com/severian-dev/sucker.severian.dev.git
synced 2025-10-29 13:15:51 +00:00
37 lines
949 B
TypeScript
37 lines
949 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Sucker?",
|
|
description: "Walk away if you don't know what this is for, bud.",
|
|
icons: {
|
|
icon: [
|
|
{ url: '/favicon.ico' },
|
|
{ url: '/favicon-16x16.png', sizes: '16x16', type: 'image/png' },
|
|
{ url: '/favicon-32x32.png', sizes: '32x32', type: 'image/png' },
|
|
],
|
|
apple: [
|
|
{ url: '/apple-touch-icon.png' }
|
|
],
|
|
other: [
|
|
{ url: '/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' },
|
|
{ url: '/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|