Files
personal-website/app/layout.tsx
2023-08-26 20:31:00 +02:00

19 lines
296 B
TypeScript

import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Stan Runge',
description: 'Stan Runge',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}