forked from git.gladyson/openmonetis
- 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).
39 lines
776 B
TypeScript
39 lines
776 B
TypeScript
import { Inter, Funnel_Display } from "next/font/google";
|
|
import localFont from "next/font/local";
|
|
|
|
// const aeonik = localFont({
|
|
// src: [
|
|
// {
|
|
// path: "../fonts/aeonik-regular.otf",
|
|
// weight: "400",
|
|
// style: "normal",
|
|
// },
|
|
// ],
|
|
// });
|
|
|
|
const anthropic_sans = localFont({
|
|
src: [
|
|
{
|
|
path: "../fonts/anthropic-sans.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
],
|
|
});
|
|
|
|
const funnel_display = Funnel_Display({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
});
|
|
|
|
const main_font = anthropic_sans;
|
|
const money_font = funnel_display;
|
|
const title_font = funnel_display;
|
|
|
|
export { main_font, money_font, title_font };
|