19 lines
341 B
TypeScript
19 lines
341 B
TypeScript
import './globals.css';
|
|
|
|
export const metadata = {
|
|
title: 'AI SDK - Next.js OpenAI Examples',
|
|
description: 'Examples of using the AI SDK with Next.js and OpenAI.',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|