{data.map((review, i) => {
@@ -120,8 +120,13 @@ function Review({data, className, ...props}) {
- {firstSentence}{' '}
-
+
+ {firstSentence}
+ {' '}
+
{remainingText}
diff --git a/app/routes/products.builder-keyboard/sections/cta.jsx b/app/routes/products.builder-keyboard/sections/cta.jsx
index 23ca3f2..782e6e3 100644
--- a/app/routes/products.builder-keyboard/sections/cta.jsx
+++ b/app/routes/products.builder-keyboard/sections/cta.jsx
@@ -17,11 +17,17 @@ export default function CTA() {
>
- CTRL YOUR PRODUCTIVITY,
+
+ CTRL
+ {' '}
+ YOUR PRODUCTIVITY,
- ALT YOUR WORK GAME.
+
+ ALT
+ {' '}
+ YOUR WORK GAME.
diff --git a/app/routes/products.builder-keyboard/sections/features.jsx b/app/routes/products.builder-keyboard/sections/features.jsx
index 6dcb18d..06a0001 100644
--- a/app/routes/products.builder-keyboard/sections/features.jsx
+++ b/app/routes/products.builder-keyboard/sections/features.jsx
@@ -23,7 +23,7 @@ function Feature({number, title, description, image}) {
{description}
-
+
diff --git a/app/routes/products.builder-keyboard/sections/hero.jsx b/app/routes/products.builder-keyboard/sections/hero.jsx
index 54252d7..e390154 100644
--- a/app/routes/products.builder-keyboard/sections/hero.jsx
+++ b/app/routes/products.builder-keyboard/sections/hero.jsx
@@ -1,4 +1,4 @@
-import {Button} from '@h2/Button';
+import {Button} from '@h2/new/Button';
import Link from '@h2/Link';
import {Price} from '@h2/Price';
import {Heading, Span, Text} from '@h2/new/Text';
@@ -24,11 +24,18 @@ export default function Hero() {
Keyboard
-
+
-
-
+
+
See{' '}
FAQs
diff --git a/app/styles/app.css b/app/styles/app.css
index 3e84e71..13eddbb 100644
--- a/app/styles/app.css
+++ b/app/styles/app.css
@@ -1,3 +1,11 @@
+@font-face {
+ font-family: "Synchro";
+ src: url("/synchro.woff2") format("woff2");
+ font-weight: normal;
+ font-style: normal;
+ font-display: swap;
+}
+
@tailwind base;
@tailwind components;
@tailwind utilities;
diff --git a/app/assets/synchro.woff2 b/public/synchro.woff2
similarity index 100%
rename from app/assets/synchro.woff2
rename to public/synchro.woff2
diff --git a/tailwind.config.js b/tailwind.config.js
index 3bc0150..c657864 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -57,6 +57,7 @@ export default {
inherit: 'inherit',
},
fontFamily: {
+ display: 'Synchro',
sans: ['Helvetica Neue', 'ui-sans-serif', 'system-ui', 'sans-serif'],
serif: ['"IBMPlexSerif"', 'Palatino', 'ui-serif'],
},