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
This commit is contained in:
Felipe Coutinho
2025-11-15 15:49:36 -03:00
commit ea0b8618e0
441 changed files with 53569 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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 };