Files
next-learn/dashboard/15-final/app/layout.tsx
Delba de Oliveira 1180db9b88 Add landing page (#187)
* Re-organize

* Add images

* Delete background-blur.tsx

* Create acme-logo.tsx

* Create fonts.ts

* Update page.tsx

* Update page.tsx

* Use 4x image

* Update page.tsx

---------

Co-authored-by: Stephanie Dietz <49788645+StephDietz@users.noreply.github.com>
2023-10-03 09:17:46 -05:00

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>
);
}