From b705074caa5f47803e272179fd8e9d4950824134 Mon Sep 17 00:00:00 2001 From: Wils Dawson Date: Fri, 7 Jul 2023 16:10:01 -0700 Subject: [PATCH 1/3] Add typography font display to Hero title. --- components/content/Hero.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/content/Hero.vue b/components/content/Hero.vue index 1504c65be..15a4bc7d1 100644 --- a/components/content/Hero.vue +++ b/components/content/Hero.vue @@ -54,6 +54,7 @@ css({ }, '.title': { fontSize: '{text.4xl.fontSize}', + fontFamily: 'var(--typography-font-display)', lineHeight: '{text.4xl.lineHeight}', fontWeight: '{fontWeight.bold}', }, From 72ca641725a37f951571d064f578a690dfb18f62 Mon Sep 17 00:00:00 2001 From: Wils Dawson Date: Fri, 7 Jul 2023 16:19:30 -0700 Subject: [PATCH 2/3] Add typography font body for hero description. --- components/content/Hero.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/content/Hero.vue b/components/content/Hero.vue index 15a4bc7d1..14139c0fc 100644 --- a/components/content/Hero.vue +++ b/components/content/Hero.vue @@ -61,6 +61,7 @@ css({ '.description': { marginTop: '{space.3}', fontSize: '{text.xl.fontSize}', + fontFamily: 'var(--typography-font-body)', lineHeight: '{text.xl.lineHeight}', }, img: { From 8842f90d1f2c11a5229a41f5084883f3a1f7d2ac Mon Sep 17 00:00:00 2001 From: Wils Dawson Date: Fri, 7 Jul 2023 16:25:48 -0700 Subject: [PATCH 3/3] Update README.md with new playground location. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42c1d0cdb..31d6a427a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ npx nuxi@latest init -t themes/alpine 1. Clone this repository 2. Install dependencies using `pnpm install` 3. Run `pnpm prepare` to generate type stubs. -4. Use `pnpm dev` to start [playground](./playground) in development mode. +4. Use `pnpm dev` to start the [playground](./starters/default) in development mode. ## License