chore: remover seções vazias de mudanças de código

Este commit remove seções vazias de mudanças de código do arquivo de
mudanças. Isso ajuda a manter o histórico de mudanças mais limpo e
organizado, facilitando a leitura e a compreensão das alterações
realizadas no projeto.
This commit is contained in:
Felipe Coutinho
2025-12-16 23:20:47 +00:00
parent 0767636eed
commit e7cb9c9db1
37 changed files with 1350 additions and 920 deletions

View File

@@ -1,17 +1,23 @@
import { Barlow, Inter } from "next/font/google";
import localFont from "next/font/local";
const inter = Inter({
subsets: ["latin"],
weight: ["500", "600", "700"],
const laranjinha = localFont({
src: [
{
path: "./LaranjinhaTextPro_Rg.woff2",
weight: "400",
style: "normal",
},
{
path: "./LaranjinhaDisplayPro_Bd.woff2",
weight: "700",
style: "normal",
},
],
display: "swap",
});
const barlow = Barlow({
subsets: ["latin"],
weight: "500",
});
const main_font = inter;
const money_font = barlow;
const title_font = inter;
const main_font = laranjinha;
const money_font = laranjinha;
const title_font = laranjinha;
export { main_font, money_font, title_font };