update title

This commit is contained in:
Steve Ruiz 2023-11-25 22:52:43 +00:00
parent e5bcfb3e44
commit 76d3395ff0
1 changed files with 14 additions and 18 deletions

View File

@ -1,22 +1,18 @@
import type { Metadata } from "next"; import type { Metadata } from 'next'
import { Inter } from "next/font/google"; import { Inter } from 'next/font/google'
import "./globals.css"; import './globals.css'
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", title: 'draw fast',
description: "Generated by create next app", description: 'Draw a picture (fast) with tldraw',
}; }
export default function RootLayout({ export default function RootLayout({ children }: { children: React.ReactNode }) {
children, return (
}: { <html lang="en">
children: React.ReactNode; <body className={inter.className}>{children}</body>
}) { </html>
return ( )
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
} }