Files
hamburger/app/layout.tsx
yaemiku fdf64a2bf3
All checks were successful
Build Full Stack / release-image (push) Successful in 11m45s
update :3
2025-04-02 22:57:52 +02:00

26 lines
533 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
import bg from '@/public/orchids.webp';
export const metadata: Metadata = {
title: 'Nikola Kubiczek',
description: 'Personal website',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body
className="antialiased bg-stone-900 bg-cover"
style={{ backgroundImage: `url(${bg.src})` }}
>
{children}
</body>
</html>
);
}