update :3
All checks were successful
Build Full Stack / release-image (push) Successful in 11m45s

This commit is contained in:
2025-04-02 22:57:52 +02:00
parent a0dde77659
commit fdf64a2bf3
12 changed files with 70 additions and 35 deletions

View File

@ -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>
);
}