hamburger/app/layout.tsx
yaemiku f85a2cc0c5
Some checks failed
Build Full Stack / release-image (push) Failing after 2m9s
New version!
2024-12-22 01:37:41 +01:00

21 lines
423 B
TypeScript

import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
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>
);
}