cv
Some checks failed
Build Full Stack / release-image (push) Failing after 58s

This commit is contained in:
2024-08-12 00:26:17 +02:00
parent 2d1d44e09b
commit c47eae1476
11 changed files with 2162 additions and 1537 deletions

23
src/app/(main)/layout.tsx Normal file
View File

@ -0,0 +1,23 @@
import '../globals.css';
export const metadata = {
title: 'storbies my beloved',
authors: { name: 'Nikola Kubiczek' },
description: 'my things',
colorScheme: 'dark',
viewport: 'width=device-width,initial-scale=1.0',
icons: ['icon.png'],
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html className="dark" lang="en" dir="ltr">
<body className="bg-zinc-900 text-zinc-100 bg-gothic-pattern">{children}</body>
</html>
);
}