From d96fbad75a4105f55099bae56b4258810a3c3062 Mon Sep 17 00:00:00 2001 From: psoubrie Date: Mon, 13 Nov 2023 17:38:52 +0000 Subject: [PATCH] font + svg --- src/index.html | 6 +++ src/public/logo_main.svg | 100 +++++++++++++++++++++++++++++++++++++++ tailwind.config.js | 4 ++ 3 files changed, 110 insertions(+) create mode 100644 src/public/logo_main.svg diff --git a/src/index.html b/src/index.html index 4a3965a..2526b82 100644 --- a/src/index.html +++ b/src/index.html @@ -1,4 +1,8 @@ + + + + @@ -6,5 +10,7 @@

Hello, World!

+ + parcel logo \ No newline at end of file diff --git a/src/public/logo_main.svg b/src/public/logo_main.svg new file mode 100644 index 0000000..e79925d --- /dev/null +++ b/src/public/logo_main.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 8b57fe9..226d06d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,6 +5,10 @@ module.exports = { ], theme: { extend: {}, + fontFamily: { + body: ['Source Sans 3', 'sans-serif'], + title: ['Work Sans', 'sans-serif'] + }, }, plugins: [], }