Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,22 @@
--color-accent-dim: var(--accent-dim);
--color-border: var(--border);
--color-error: var(--error);
--font-heading: var(--font-geist-mono);
--font-body: var(--font-geist-mono);
--font-heading: var(--font-lora);
--font-body: var(--font-lora);
}

body {
background: var(--bg);
color: var(--text);
font-family: var(--font-geist-mono), "Geist Mono", ui-monospace, monospace;
font-family: var(--font-lora), "Lora", Georgia, "Times New Roman", serif;
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-lora), "Lora", Georgia, "Times New Roman", serif;
}

/* Monospace elements: addresses, code blocks, contract data */
code, pre, .font-mono {
font-family: var(--font-geist-mono), "Geist Mono", ui-monospace, monospace;
}

Expand All @@ -47,7 +52,7 @@ h1, h2, h3, h4, h5, h6 {

/* Ruled notebook paper */
.ruled-paper {
--line-height: 26px;
--line-height: 28px;
background: var(--paper-bg);
padding: calc(var(--line-height) * 2) 2rem var(--line-height) 4.5rem;
font-size: 1rem;
Expand Down
9 changes: 7 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import type { Metadata } from "next";
import { Geist_Mono } from "next/font/google";
import { Lora, Geist_Mono } from "next/font/google";
import { Providers } from "./providers";
import { NavBar } from "../components/NavBar";
import { Footer } from "../components/Footer";
import { FarcasterMiniApp } from "../components/FarcasterMiniApp";
import "./globals.css";

const lora = Lora({
variable: "--font-lora",
subsets: ["latin"],
});

const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
Expand Down Expand Up @@ -34,7 +39,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={`${geistMono.variable} antialiased`}>
<body className={`${lora.variable} ${geistMono.variable} antialiased`}>
<Providers>
<FarcasterMiniApp />
<NavBar />
Expand Down
Loading