diff --git a/app/globals.css b/app/globals.css index 1261a70..4e6478a 100644 --- a/app/globals.css +++ b/app/globals.css @@ -77,6 +77,8 @@ @theme inline { --font-sans: "Geist", "Geist Fallback"; --font-mono: "Geist Mono", "Geist Mono Fallback"; + /* Added Fredoka bubble font for logo */ + --font-fredoka: var(--font-fredoka); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); diff --git a/app/layout.tsx b/app/layout.tsx index de9ae2a..2f4e330 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,11 +1,16 @@ import type React from "react" import type { Metadata } from "next" -import { Geist, Geist_Mono } from "next/font/google" +import { Geist, Geist_Mono, Fredoka } from "next/font/google" import { Analytics } from "@vercel/analytics/next" import "./globals.css" const _geist = Geist({ subsets: ["latin"] }) const _geistMono = Geist_Mono({ subsets: ["latin"] }) +const _fredoka = Fredoka({ + subsets: ["latin"], + weight: ["400", "700"], + variable: "--font-fredoka", +}) export const metadata: Metadata = { title: "Jefflix - Seize the Streams of Production", @@ -36,7 +41,7 @@ export default function RootLayout({ children: React.ReactNode }>) { return ( - +
{children}@@ -161,6 +165,9 @@ export default function JefflixPage() {
Streaming platforms aren't just bad business—they're architecture for extraction.
@@ -234,7 +241,7 @@ export default function JefflixPage() {