hamburger/app/layout.tsx

21 lines
423 B
TypeScript
Raw Normal View History

2024-12-22 01:37:41 +01:00
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
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>
);
}