From d02ae06724bc111f8485079874cfaa2b60b760eb Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Thu, 2 Dec 2021 17:21:43 -0600 Subject: [PATCH] Use Major Mono for the header font --- web/components/hero.tsx | 8 ++++---- web/pages/index.tsx | 4 ++++ web/tailwind.config.js | 3 +++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/web/components/hero.tsx b/web/components/hero.tsx index 534a5eb2..28b1db84 100644 --- a/web/components/hero.tsx +++ b/web/components/hero.tsx @@ -19,13 +19,13 @@ export const Hero = () => { >
- - - Mantic Markets + + + Mantic Markets
-
+
{navigation.map((item) => ( {item.name} diff --git a/web/pages/index.tsx b/web/pages/index.tsx index f901db31..256c370d 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -10,6 +10,10 @@ const Home: NextPage = () => { Mantic Markets + + + + diff --git a/web/tailwind.config.js b/web/tailwind.config.js index 679d1979..7a47643b 100644 --- a/web/tailwind.config.js +++ b/web/tailwind.config.js @@ -3,6 +3,9 @@ module.exports = { purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], darkMode: false, // or 'media' or 'class' theme: { + fontFamily: { + 'major-mono': ['Major Mono Display', 'monospace'], + }, extend: { backgroundImage: { 'world-trading': "url('/world-trading-background.jpg')",