From 436fd047143c972fef03de4283f4e529a54428d1 Mon Sep 17 00:00:00 2001 From: Albert Wang Date: Thu, 3 Oct 2024 18:14:11 -0700 Subject: [PATCH] fix about us header font weight --- apps/site/src/app/(home)/sections/Intro/Intro.module.scss | 1 + apps/site/src/app/layout.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/site/src/app/(home)/sections/Intro/Intro.module.scss b/apps/site/src/app/(home)/sections/Intro/Intro.module.scss index a4c8e389..2f07f494 100644 --- a/apps/site/src/app/(home)/sections/Intro/Intro.module.scss +++ b/apps/site/src/app/(home)/sections/Intro/Intro.module.scss @@ -11,6 +11,7 @@ .header { font-size: 1.25rem; + font-weight: 600; @include bootstrap.media-breakpoint-up(sm) { font-size: 2rem; diff --git a/apps/site/src/app/layout.tsx b/apps/site/src/app/layout.tsx index db1bef48..7234a29f 100644 --- a/apps/site/src/app/layout.tsx +++ b/apps/site/src/app/layout.tsx @@ -17,7 +17,7 @@ export const metadata: Metadata = { }; const fredoka = Fredoka({ - weight: ["400", "700"], + weight: ["400", "600", "700"], subsets: ["latin"], variable: "--next-font-fredoka", });