Skip to content

Commit 6ec3be7

Browse files
SamoraDCclaude
andcommitted
fix: remove Google Fonts dependencies causing build timeouts
- Remove Geist and Inter font imports that cause external connection timeouts - Use system fonts fallback for better build reliability - Ensure static export works consistently for GitHub Pages deployment 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c041f6d commit 6ec3be7

2 files changed

Lines changed: 2 additions & 17 deletions

File tree

src/app/corporate/layout.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import type { Metadata } from 'next';
2-
import { Inter } from 'next/font/google';
32
import { LanguageProvider } from '@/contexts/LanguageContext';
43

5-
const inter = Inter({ subsets: ['latin'] });
6-
74
export const metadata: Metadata = {
85
title: 'QuantumGraph - Inteligência Artificial Quântica',
96
description: 'Transformamos dados em insights poderosos através de tecnologias quânticas avançadas e inteligência artificial de última geração.',
@@ -50,7 +47,7 @@ export default function CorporateLayout({
5047
<meta name="viewport" content="width=device-width, initial-scale=1" />
5148
<meta name="theme-color" content="#3b82f6" />
5249
</head>
53-
<body className={`${inter.className} antialiased`} suppressHydrationWarning>
50+
<body className="antialiased" suppressHydrationWarning>
5451
<LanguageProvider>
5552
{children}
5653
</LanguageProvider>

src/app/layout.tsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
import type { Metadata } from "next";
2-
import { Geist, Geist_Mono } from "next/font/google";
32
import "./globals.css";
43

5-
6-
const geistSans = Geist({
7-
variable: "--font-geist-sans",
8-
subsets: ["latin"],
9-
});
10-
11-
const geistMono = Geist_Mono({
12-
variable: "--font-geist-mono",
13-
subsets: ["latin"],
14-
});
15-
164
export const metadata: Metadata = {
175
title: "QuantumGraph AI - Consultoria e Desenvolvimento em Inteligência Artificial",
186
description: "QuantumGraph AI oferece consultoria especializada em IA, desenvolvimento de sistemas agênticos e soluções em computação quântica. Fundada por Davi Castro Samora, especialista com 10+ anos de experiência.",
@@ -41,7 +29,7 @@ export default function RootLayout({
4129
children: React.ReactNode;
4230
}>) {
4331
return (
44-
<html lang="pt-BR" className={`${geistSans.variable} ${geistMono.variable}`}>
32+
<html lang="pt-BR">
4533
<head></head>
4634
<body suppressHydrationWarning className="antialiased bg-black">
4735
{children}

0 commit comments

Comments
 (0)