Files
next-learn/dashboard/15-final/app/layout.tsx
Delba de Oliveira 3f2a2ae845 Clean up 💅🏼 (#198)
* Use string literals

* Use 666 for evil rabbit

* Delete extra logo

* Use consistent pixels for images

* Update button.tsx

* Fix 666 mistake
2023-10-06 14:28:42 +01:00

21 lines
438 B
TypeScript

import '@/app/ui/global.css';
import { inter } from '@/app/ui/fonts';
import type { Metadata } from 'next';
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} antialiased`}>{children}</body>
</html>
);
}