Remove unused font file and update font index; initialize database extensions with improved error handling; add EstabelecimentoLogo component for dynamic logo generation.

This commit is contained in:
Felipe Coutinho
2025-12-01 16:35:12 +00:00
parent c91edd0f31
commit 9cf89829f6
40 changed files with 6570 additions and 1114 deletions

View File

@@ -1,16 +1,6 @@
import { Inter, Funnel_Display } from "next/font/google";
import { 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: [
{
@@ -26,13 +16,8 @@ const funnel_display = Funnel_Display({
weight: ["400", "500", "600", "700"],
});
const inter = Inter({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
const main_font = funnel_display;
const money_font = anthropic_sans;
const title_font = anthropic_sans;
const title_font = funnel_display;
export { main_font, money_font, title_font };