hamburger/src/app/layout.tsx

23 lines
505 B
TypeScript
Raw Normal View History

2023-03-20 20:39:59 +01:00
import './globals.css';
2023-03-15 19:39:14 +01:00
export const metadata = {
2023-03-20 20:39:59 +01:00
title: 'storbies my beloved',
authors: { name: 'Nikola Kubiczek' },
description: 'my things',
colorScheme: 'dark',
viewport: 'width=device-width,initial-scale=1.0',
icons: ['icon.png'],
};
2023-03-15 19:39:14 +01:00
export default function RootLayout({
children,
}: {
2023-03-20 20:39:59 +01:00
children: React.ReactNode;
2023-03-15 19:39:14 +01:00
}) {
return (
2023-03-20 20:39:59 +01:00
<html className="dark" lang="en" dir="ltr">
2023-05-30 02:26:50 +02:00
<body className="bg-zinc-900 text-zinc-100 bg-gothic-pattern">{children}</body>
2023-03-15 19:39:14 +01:00
</html>
2023-03-20 20:39:59 +01:00
);
2023-03-15 19:39:14 +01:00
}