From ae39ca786bc0c344c9e82900dca51a2f0c681b4e Mon Sep 17 00:00:00 2001 From: Armando Soares Date: Wed, 16 Sep 2026 05:28:07 +0000 Subject: [PATCH] fonte Plus Jakarta e Outfit no app e admin --- web/src/app/globals.css | 8 ++++---- web/src/app/layout.tsx | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/web/src/app/globals.css b/web/src/app/globals.css index b542e0d..957f0c5 100644 --- a/web/src/app/globals.css +++ b/web/src/app/globals.css @@ -16,8 +16,8 @@ --color-sinka-light: var(--sinka-light); --color-snow: var(--snow); --color-night: var(--night); - --font-sans: var(--font-barlow); - --font-display: var(--font-condensed); + --font-sans: var(--font-sans-face); + --font-display: var(--font-display-face); } html { @@ -29,14 +29,14 @@ body { margin: 0; background: #000; color: #e8f4e5; - font-family: var(--font-barlow), system-ui, sans-serif; + font-family: var(--font-sans-face), system-ui, sans-serif; } h1, h2, h3, .font-display { - font-family: var(--font-condensed), system-ui, sans-serif; + font-family: var(--font-display-face), system-ui, sans-serif; } .orbit { diff --git a/web/src/app/layout.tsx b/web/src/app/layout.tsx index dc18894..51129f7 100644 --- a/web/src/app/layout.tsx +++ b/web/src/app/layout.tsx @@ -1,17 +1,17 @@ import type { Metadata } from "next"; -import { Barlow, Barlow_Condensed } from "next/font/google"; +import { Outfit, Plus_Jakarta_Sans } from "next/font/google"; import "./globals.css"; -const barlow = Barlow({ - variable: "--font-barlow", +const sans = Plus_Jakarta_Sans({ + variable: "--font-sans-face", subsets: ["latin"], - weight: ["400", "500", "600"], + weight: ["400", "500", "600", "700"], }); -const condensed = Barlow_Condensed({ - variable: "--font-condensed", +const display = Outfit({ + variable: "--font-display-face", subsets: ["latin"], - weight: ["600", "700", "800"], + weight: ["500", "600", "700", "800"], }); export const metadata: Metadata = { @@ -26,7 +26,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + {children} );