hamburger/app/layout.tsx

20 lines
369 B
TypeScript
Raw Permalink Normal View History

2024-12-22 01:37:41 +01:00
import type { Metadata } from 'next';
import './globals.css';
2024-12-21 21:35:42 +01:00
export const metadata: Metadata = {
2024-12-22 01:37:41 +01:00
title: 'Nikola Kubiczek',
description: 'Personal website',
2024-12-21 21:35:42 +01:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2024-12-22 01:37:41 +01:00
<body className="antialiased">{children}</body>
2024-12-21 21:35:42 +01:00
</html>
);
}