fonte Plus Jakarta e Outfit no app e admin

This commit is contained in:
Armando Soares 2026-09-16 05:28:07 +00:00
parent cd59a303f7
commit ae39ca786b
2 changed files with 12 additions and 12 deletions

View File

@ -16,8 +16,8 @@
--color-sinka-light: var(--sinka-light); --color-sinka-light: var(--sinka-light);
--color-snow: var(--snow); --color-snow: var(--snow);
--color-night: var(--night); --color-night: var(--night);
--font-sans: var(--font-barlow); --font-sans: var(--font-sans-face);
--font-display: var(--font-condensed); --font-display: var(--font-display-face);
} }
html { html {
@ -29,14 +29,14 @@ body {
margin: 0; margin: 0;
background: #000; background: #000;
color: #e8f4e5; color: #e8f4e5;
font-family: var(--font-barlow), system-ui, sans-serif; font-family: var(--font-sans-face), system-ui, sans-serif;
} }
h1, h1,
h2, h2,
h3, h3,
.font-display { .font-display {
font-family: var(--font-condensed), system-ui, sans-serif; font-family: var(--font-display-face), system-ui, sans-serif;
} }
.orbit { .orbit {

View File

@ -1,17 +1,17 @@
import type { Metadata } from "next"; 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"; import "./globals.css";
const barlow = Barlow({ const sans = Plus_Jakarta_Sans({
variable: "--font-barlow", variable: "--font-sans-face",
subsets: ["latin"], subsets: ["latin"],
weight: ["400", "500", "600"], weight: ["400", "500", "600", "700"],
}); });
const condensed = Barlow_Condensed({ const display = Outfit({
variable: "--font-condensed", variable: "--font-display-face",
subsets: ["latin"], subsets: ["latin"],
weight: ["600", "700", "800"], weight: ["500", "600", "700", "800"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@ -26,7 +26,7 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}>) { }>) {
return ( return (
<html lang="pt-BR" className={`${barlow.variable} ${condensed.variable} h-full`}> <html lang="pt-BR" className={`${sans.variable} ${display.variable} h-full`}>
<body className="min-h-full antialiased">{children}</body> <body className="min-h-full antialiased">{children}</body>
</html> </html>
); );