interstellar_ai/app/layout.tsx

17 lines
255 B
TypeScript
Raw Normal View History

2024-09-18 09:47:23 +02:00
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}