This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import type { Metadata } from 'next';
|
||||
import './globals.css';
|
||||
import bg from '@/public/orchids.webp';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Nikola Kubiczek',
|
||||
@ -12,8 +13,13 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className="antialiased">{children}</body>
|
||||
<html lang="en" className="dark">
|
||||
<body
|
||||
className="antialiased bg-stone-900 bg-cover"
|
||||
style={{ backgroundImage: `url(${bg.src})` }}
|
||||
>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user