mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-09 06:55:12 +00:00
* Add login screen * Update lock fil * Polish the view * Update ui --------- Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
22 lines
467 B
TypeScript
22 lines
467 B
TypeScript
import clsx from 'clsx';
|
|
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={clsx(inter.className, 'antialiased')}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|