We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00532b4 commit 0299be2Copy full SHA for 0299be2
apps/react/tables/libraries/AgGrid/marketing-spend-demo/app/layout.tsx
@@ -1,6 +1,13 @@
1
import type { Metadata } from 'next'
2
+import { Urbanist } from 'next/font/google'
3
import '../styles/globals.css'
4
5
+const urbanist = Urbanist({
6
+ subsets: ['latin'],
7
+ weight: ['400', '600'],
8
+ variable: '--font-urbanist',
9
+})
10
+
11
export const metadata: Metadata = {
12
title: 'marketing-spend-demo',
13
description: 'Library demo for AgGrid',
@@ -13,7 +20,7 @@ export default function RootLayout({
20
}) {
14
21
return (
15
22
<html lang="en">
16
- <body>{children}</body>
23
+ <body className={urbanist.variable}>{children}</body>
17
24
</html>
18
25
)
19
26
}
0 commit comments