feat: atualiza fontes e altera avatar SVG

- Substitui a fonte "Outfit" pela "Funnel_Display" no arquivo font_index.ts.
- Atualiza a referência da fonte principal para "anthropic_sans" e define
  "funnel_display" como a fonte para "money_font" e "title_font".
- Modifica o arquivo SVG do avatar 015, alterando a cor de preenchimento
  de alguns elementos para um tom mais vibrante (#F96837).
This commit is contained in:
Felipe Coutinho
2025-11-22 12:49:56 -03:00
parent 4d076772e6
commit 8c5313119d
30 changed files with 411 additions and 211 deletions

View File

@@ -98,7 +98,7 @@ export function NavMain({ sections }: { sections: NavSection[] }) {
);
const activeLinkClasses =
"data-[active=true]:bg-dark! shadow-md data-[active=true]:text-dark-foreground! hover:bg-primary/10! hover:text-primary!";
"data-[active=true]:bg-sidebar-accent data-[active=true]:text-dark! hover:text-primary!";
return (
<>
@@ -119,8 +119,8 @@ export function NavMain({ sections }: { sections: NavSection[] }) {
className={itemIsActive ? activeLinkClasses : ""}
>
<Link prefetch href={buildHrefWithPeriod(item.url)}>
<item.icon className="h-4 w-4" />
<span className="lowercase">{item.title}</span>
<item.icon className={"h-4 w-4"} />
{item.title}
</Link>
</SidebarMenuButton>
{item.items?.length ? (