Files
next-learn/app/layout.tsx
v0 1833901a29 feat: create dashboard starter with basic layout and metrics
Add initial dashboard page and metric cards for Acme branding.

#VERCEL_SKIP

Co-authored-by: null <162737925+zebulonhermann@users.noreply.github.com>
2025-11-21 05:08:15 +00:00

30 lines
649 B
TypeScript

import type { Metadata } from 'next'
import { GeistSans } from 'geist/font/sans'
import { GeistMono } from 'geist/font/mono'
import { Analytics } from '@vercel/analytics/next'
import './globals.css'
export const metadata: Metadata = {
title: 'v0 App',
description: 'Created with v0',
generator: 'v0.app',
icons: {
icon: '/icon.svg',
},
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={`font-sans antialiased ${GeistSans.variable} ${GeistMono.variable}`}>
{children}
<Analytics />
</body>
</html>
)
}