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-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 {

View File

@ -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 (
<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>
</html>
);