Design Variante B: Instrument Serif → Plus Jakarta Sans
Geometrisches Sans-Serif für alle Überschriften (font-serif Klasse). Näher an fly.io's technisch-modernem Erscheinungsbild. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
4cbb2988fe
commit
67855432d0
2 changed files with 5 additions and 6 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import type { Metadata, Viewport } from 'next'
|
||||
import { Inter, Instrument_Serif, JetBrains_Mono } from 'next/font/google'
|
||||
import { Inter, Plus_Jakarta_Sans, JetBrains_Mono } from 'next/font/google'
|
||||
import { Analytics } from '@vercel/analytics/next'
|
||||
import './globals.css'
|
||||
|
||||
|
|
@ -9,10 +9,9 @@ const inter = Inter({
|
|||
display: 'swap',
|
||||
})
|
||||
|
||||
const instrumentSerif = Instrument_Serif({
|
||||
weight: '400',
|
||||
const plusJakartaSans = Plus_Jakarta_Sans({
|
||||
subsets: ['latin'],
|
||||
variable: '--font-instrument-serif',
|
||||
variable: '--font-plus-jakarta-sans',
|
||||
display: 'swap',
|
||||
})
|
||||
|
||||
|
|
@ -64,7 +63,7 @@ export default function RootLayout({
|
|||
return (
|
||||
<html
|
||||
lang="de"
|
||||
className={`${inter.variable} ${instrumentSerif.variable} ${jetbrainsMono.variable} dark bg-background`}
|
||||
className={`${inter.variable} ${plusJakartaSans.variable} ${jetbrainsMono.variable} dark bg-background`}
|
||||
suppressHydrationWarning
|
||||
>
|
||||
<head>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue