mirror of
https://github.com/xavidop/cardex.git
synced 2026-08-28 17:01:07 +00:00
25 lines
671 B
TypeScript
25 lines
671 B
TypeScript
import type {Metadata} from 'next';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Firebase Studio App',
|
|
description: 'Generated by Firebase Studio',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"></link>
|
|
</head>
|
|
<body className="font-body antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|