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,7 +1,31 @@
{
"version": "1.0.0",
"generatedAt": "2025-12-10T16:45:04.592Z",
"generatedAt": "2025-12-13T13:52:07.921Z",
"entries": [
{
"id": "0767636eed5085a211e08de52577beed658f05cf",
"type": "feat",
"title": "ajustar layout e estilos",
"date": "2025-12-11 17:43:33 +0000",
"icon": "✨",
"category": "feature"
},
{
"id": "0744991edd717748fce24e148907eafd7222c64e",
"type": "chore",
"title": "remove unused code and clean up imports",
"date": "2025-12-10 16:53:19 +0000",
"icon": "🔧",
"category": "chore"
},
{
"id": "b767bd959955854e54b41270e9c220fe0b546947",
"type": "feat",
"title": "adicionar widgets de despesas e receitas com gráfico - Adiciona o widget de despesas por categoria com gráfico. - Adiciona o widget de receitas por categoria com gráfico. - Atualiza a configuração dos widgets para incluir novos componentes. - Ajusta estilos e tamanhos de elementos nos widgets existentes.",
"date": "2025-12-10 16:51:45 +0000",
"icon": "✨",
"category": "feature"
},
{
"id": "89765d4373b820a3e7c8e4fa40479dd2673558b0",
"type": "chore",
@@ -137,30 +161,6 @@
"date": "2025-11-23 12:26:05 -0300",
"icon": "✨",
"category": "feature"
},
{
"id": "3ce8541a5699317c747c629e1c0e07d579458633",
"type": "fix",
"title": "corrige a grafia de \"OpenSheets\" para \"Opensheets\"",
"date": "2025-11-22 20:29:25 -0300",
"icon": "🐛",
"category": "bugfix"
},
{
"id": "ac24961e4b97bfb58a52e1b95f3d9696fe1e5d86",
"type": "refactor",
"title": "substitui '•' por '-' em textos de exibição",
"date": "2025-11-22 12:58:57 -0300",
"icon": "♻️",
"category": "refactor"
},
{
"id": "8c5313119dafaf3a33ab4bffeeb40d7f0278eb08",
"type": "feat",
"title": "atualiza fontes e altera avatar SVG",
"date": "2025-11-22 12:49:56 -0300",
"icon": "✨",
"category": "feature"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 869 KiB

Binary file not shown.

Binary file not shown.

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 };