Files
openmonetis/public/fonts/font_index.ts
Felipe Coutinho ea0b8618e0 feat: adição de novos ícones SVG e configuração do ambiente
- Adicionados ícones SVG para ChatGPT, Claude, Gemini e OpenRouter
- Implementados ícones para modos claro e escuro do ChatGPT
- Criado script de inicialização para PostgreSQL com extensão pgcrypto
- Adicionado script de configuração de ambiente que faz backup do .env
- Configurado tsconfig.json para TypeScript com opções de compilação
2025-11-15 15:49:36 -03:00

39 lines
735 B
TypeScript

import { Inter, Outfit } 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 inter = Inter({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
const outfit = Outfit({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
const main_font = anthropic_sans;
const money_font = outfit;
const title_font = inter;
export { main_font, money_font, title_font };