From a5e4d2d7e8ba51c475921e6857565115d8d37c7d Mon Sep 17 00:00:00 2001 From: Francisco Madeira Date: Mon, 3 Feb 2025 18:18:32 +0000 Subject: [PATCH] feat: update font type to poppins --- web/dashboard/src/app/layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web/dashboard/src/app/layout.tsx b/web/dashboard/src/app/layout.tsx index ef1a4d5e..7270d70e 100644 --- a/web/dashboard/src/app/layout.tsx +++ b/web/dashboard/src/app/layout.tsx @@ -1,12 +1,19 @@ import "./globals.css"; +import { Poppins } from 'next/font/google' + +const poppins = Poppins({ + weight: ['600', '400'], + subsets: ['latin'], +}) + import React from "react"; import { ThemeProvider } from '@/components/theme-provider'; export default async function RootLayout({ children }: { children: React.ReactNode }) { - return + return - + {children}