Skip to content

Commit 0299be2

Browse files
committed
Sidebar v1
1 parent 00532b4 commit 0299be2

File tree

3 files changed

+467
-5
lines changed

3 files changed

+467
-5
lines changed

apps/react/tables/libraries/AgGrid/marketing-spend-demo/app/layout.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import type { Metadata } from 'next'
2+
import { Urbanist } from 'next/font/google'
23
import '../styles/globals.css'
34

5+
const urbanist = Urbanist({
6+
subsets: ['latin'],
7+
weight: ['400', '600'],
8+
variable: '--font-urbanist',
9+
})
10+
411
export const metadata: Metadata = {
512
title: 'marketing-spend-demo',
613
description: 'Library demo for AgGrid',
@@ -13,7 +20,7 @@ export default function RootLayout({
1320
}) {
1421
return (
1522
<html lang="en">
16-
<body>{children}</body>
23+
<body className={urbanist.variable}>{children}</body>
1724
</html>
1825
)
1926
}

0 commit comments

Comments
 (0)