Skip to content

Commit dd729be

Browse files
authored
Switch fonts (#10)
1 parent 47c5350 commit dd729be

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

src/app/globals.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
1+
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono&family=Quicksand:[email protected]&family=Tilt+Neon&display=swap');
2+
23

34
@tailwind base;
45
@tailwind components;
@@ -60,6 +61,9 @@
6061
--darkBackground: 0 0 0;
6162
--lightBackground: var(--hume-tan-200);
6263
--grayBackground: var(--hume-black-200);
64+
65+
--font-sans: "Quicksand", sans-serif;
66+
--font-mono: "Geist Mono", monospace;
6367
}
6468

6569
html {

src/app/layout.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import type { ReactNode } from 'react';
33
import './globals.css';
44
import dynamic from 'next/dynamic';
55

6-
import { fellix } from '@/assets/Fellix';
7-
import { fraktionMono } from '@/assets/FraktionMono';
8-
import { cn } from '@/utils';
96
import { DatadogInit } from '@/utils/analytics';
107

118
const DownloadAppBanner = dynamic(
@@ -33,14 +30,7 @@ export default function RootLayout({
3330
}>) {
3431
return (
3532
<html lang="en">
36-
<body
37-
className={cn(
38-
fellix.className,
39-
fellix.variable,
40-
fraktionMono.variable,
41-
'flex min-h-screen flex-col',
42-
)}
43-
>
33+
<body className="flex min-h-screen flex-col">
4434
<DownloadAppBanner />
4535
<div
4636
className={'relative grow overflow-auto [transform:translateZ(0px)]'}

0 commit comments

Comments
 (0)