feat(branding): atualiza landing, fontes e assets publicos

This commit is contained in:
Felipe Coutinho
2026-03-09 17:14:37 +00:00
parent 6205dee42a
commit f724d8ac04
30 changed files with 94 additions and 74 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -28,6 +28,23 @@ const ai_sans = localFont({
variable: "--font-ai-sans",
});
const aeonik = localFont({
src: [
{
path: "./aeonikfono-regular.woff2",
weight: "400",
style: "normal",
},
{
path: "./aeonikfono-medium.woff2",
weight: "600",
style: "normal",
},
],
display: "swap",
variable: "--font-aeonik",
});
const itau = localFont({
src: [
{
@@ -51,6 +68,28 @@ const anthropic_sans = localFont({
variable: "--font-anthropic-sans",
});
const america = localFont({
src: [
{
path: "./america-regular.woff2",
weight: "400",
style: "normal",
},
{
path: "./america-medium.woff2",
weight: "700",
style: "normal",
},
{
path: "./america-bold.woff2",
weight: "900",
style: "normal",
},
],
display: "swap",
variable: "--font-america",
});
const inter = Inter({
subsets: ["latin"],
display: "swap",
@@ -112,6 +151,8 @@ export const DEFAULT_FONT_KEY = "ai-sans";
export const FONT_OPTIONS = [
{ key: "ai-sans", label: "Open AI Sans", variable: "var(--font-ai-sans)" },
{ key: "america", label: "America", variable: "var(--font-america)" },
{ key: "aeonik", label: "Aeonik", variable: "var(--font-aeonik)" },
{
key: "anthropic-sans",
label: "Anthropic Sans",
@@ -171,6 +212,8 @@ const allFonts = [
fira_code,
ibm_plex_mono,
itau,
america,
aeonik,
];
export const allFontVariables = allFonts.map((f) => f.variable).join(" ");