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:
BIN
public/fonts/aeonik-regular.otf
Normal file
BIN
public/fonts/aeonik-regular.otf
Normal file
Binary file not shown.
BIN
public/fonts/anthropic-sans.woff2
Normal file
BIN
public/fonts/anthropic-sans.woff2
Normal file
Binary file not shown.
38
public/fonts/font_index.ts
Normal file
38
public/fonts/font_index.ts
Normal 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 };
|
||||
Reference in New Issue
Block a user