From 4937d816747ae34c6aa915f66a596b3b2e4a3ab2 Mon Sep 17 00:00:00 2001 From: Catherine Tan <64336644+ccatherinetan@users.noreply.github.com> Date: Tue, 14 Jan 2025 23:03:23 -0800 Subject: [PATCH] [chore] import Lexend font (#70) --- app/layout.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index eda4b5d8..ac4168e2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; +import { Lexend } from 'next/font/google'; import NavSystem from '@/components/NavSystem'; import StyledComponentsRegistry from '@/lib/registry'; import ProfileProvider from '@/utils/ProfileProvider'; @@ -7,7 +7,7 @@ import { AuthProvider } from '../utils/AuthProvider'; import './globals.css'; // font definitions -const sans = Inter({ +const sans = Lexend({ variable: '--font-sans', subsets: ['latin'], }); @@ -26,7 +26,6 @@ export default function RootLayout({ return ( - {/*
*/} @@ -35,7 +34,6 @@ export default function RootLayout({ - {/*
*/} );