diff --git a/.gitignore b/.gitignore index a547bf3..6a1f366 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ pnpm-debug.log* lerna-debug.log* node_modules +pnpm-lock.yaml dist dist-ssr *.local diff --git a/index.html b/index.html index 6a06e3b..85b717b 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,10 @@ coopcloud-frontend + + + +
diff --git a/public/fonts/Lora-Italic.woff2 b/public/fonts/Lora-Italic.woff2 new file mode 100644 index 0000000..36bea07 Binary files /dev/null and b/public/fonts/Lora-Italic.woff2 differ diff --git a/public/fonts/manrope.bold.woff2 b/public/fonts/manrope.bold.woff2 new file mode 100644 index 0000000..c3f133c Binary files /dev/null and b/public/fonts/manrope.bold.woff2 differ diff --git a/public/fonts/manrope.light.woff2 b/public/fonts/manrope.light.woff2 new file mode 100644 index 0000000..0efa5d8 Binary files /dev/null and b/public/fonts/manrope.light.woff2 differ diff --git a/public/fonts/manrope.medium.woff2 b/public/fonts/manrope.medium.woff2 new file mode 100644 index 0000000..19b8b23 Binary files /dev/null and b/public/fonts/manrope.medium.woff2 differ diff --git a/src/assets/scss/_fonts.scss b/src/assets/scss/_fonts.scss index 168f4f7..0d5ca7e 100644 --- a/src/assets/scss/_fonts.scss +++ b/src/assets/scss/_fonts.scss @@ -1,6 +1,6 @@ @font-face { font-family: 'Lora'; - src: url('https://coopcloud.tech/font/Lora-Italic.woff2') format('woff2'); + src: url('/fonts/Lora-Italic.woff2') format('woff2'); font-style: italic; font-weight: 400; font-display: swap; @@ -8,7 +8,7 @@ @font-face { font-family: 'Manrope'; - src: url('https://coopcloud.tech/font/manrope.light.woff2') format('woff2'); + src: url('/fonts/manrope.light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; @@ -16,7 +16,7 @@ @font-face { font-family: 'Manrope'; - src: url('https://coopcloud.tech/font/manrope.medium.woff2') format('woff2'); + src: url('/fonts/manrope.medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; @@ -24,7 +24,7 @@ @font-face { font-family: 'Manrope'; - src: url('https://coopcloud.tech/font/manrope.bold.woff2') format('woff2'); + src: url('/fonts/manrope.bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap;