diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index bb721b3..06888ba 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -5,6 +5,7 @@ import { getUserTeams } from '@/services/database/team'; import '@/theme/app.css'; import '@/theme/globals.css'; import { Metadata } from 'next'; +import { Mulish } from 'next/font/google'; import Providers from './providers'; export const dynamic = 'force-dynamic'; @@ -47,6 +48,12 @@ export const metadata: Metadata = { }, }; +const mulish = Mulish({ + subsets: ['latin'], + weight: ['400', '500', '600', '700'], + variable: '--font-mulish', +}); + export default async function RootLayout({ children }: Props) { const session = await getSession(); const teams = session?.user.id @@ -55,7 +62,9 @@ export default async function RootLayout({ children }: Props) { return ( -
+