hamburger/app/layout.tsx
yaemiku 7057f0e04a
Some checks failed
Build Full Stack / release-image (push) Failing after 2m22s
yeah.. linting..
2024-12-22 01:45:56 +01:00

20 lines
369 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'Nikola Kubiczek',
description: 'Personal website',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased">{children}</body>
</html>
);
}