mirror of
https://github.com/BradNut/nextjs-dashboard
synced 2025-09-08 17:40:30 +00:00
21 lines
536 B
TypeScript
21 lines
536 B
TypeScript
import { Metadata } from 'next';
|
|
import '@/app/ui/global.css';
|
|
import { inter } from '@/app/ui/fonts';
|
|
|
|
export const metadata: Metadata = {
|
|
title: '%s | Acme Dashboard',
|
|
description: 'The official Next.js Course Dashboard, build with App Router.',
|
|
metadataBase: new URL('https://next-learn-dashboard.vercel.sh'),
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.className} antialiased`}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|