interstellar_ai/app/layout.tsx

21 lines
403 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">
2024-09-18 10:03:36 +02:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Assistant</title>
</head>
2024-09-18 09:47:23 +02:00
<body>{children}</body>
</html>
)
}