Tom Hubrecht
6bdbccf9b2
Some checks failed
build configuration / build_storage01 (push) Successful in 47s
build configuration / build_compute01 (push) Successful in 1m11s
build configuration / build_vault01 (push) Successful in 42s
build configuration / build_web02 (push) Successful in 41s
build configuration / build_web01 (push) Has been cancelled
20 lines
648 B
Diff
20 lines
648 B
Diff
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
|
|
index d4c1466..76c9931 100644
|
|
--- a/src/app/layout.tsx
|
|
+++ b/src/app/layout.tsx
|
|
@@ -1,5 +1,5 @@
|
|
import { Metadata } from 'next'
|
|
-import { Karla } from 'next/font/google'
|
|
+import localFont from 'next/font/local'
|
|
|
|
import Egg from '/src/components/Egg/Egg'
|
|
import Settings from '/src/components/Settings/Settings'
|
|
@@ -10,7 +10,7 @@ import { useTranslation } from '/src/i18n/server'
|
|
|
|
import './global.css'
|
|
|
|
-const karla = Karla({ subsets: ['latin'] })
|
|
+const karla = localFont({ src: './fonts/karla.ttf' })
|
|
|
|
export const metadata: Metadata = {
|
|
metadataBase: new URL('https://crab.fit'),
|