mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-07 22:18:45 +00:00
21 lines
421 B
TypeScript
21 lines
421 B
TypeScript
import '@/app/ui/global.css';
|
|
import type { Metadata } from 'next';
|
|
import { inter } from '@/app/ui/fonts';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Create Next App',
|
|
description: 'Generated by create next app',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|