From 28cc1400e9accf2b10e5ea213ab10405b6b352b7 Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Thu, 11 Dec 2025 22:52:35 -0500 Subject: [PATCH] refactor: simplify font imports in layout.tsx - Removed unnecessary variable assignments for GeistSans and GeistMono. - Updated imports to directly use the Geist font components. --- apps/app/src/app/layout.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/app/src/app/layout.tsx b/apps/app/src/app/layout.tsx index 4e8caf7e..2d7df503 100644 --- a/apps/app/src/app/layout.tsx +++ b/apps/app/src/app/layout.tsx @@ -1,11 +1,8 @@ import type { Metadata } from "next"; -import { GeistSans as GeistSansFont } from "geist/font/sans"; -import { GeistMono as GeistMonoFont } from "geist/font/mono"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; import { Toaster } from "sonner"; import "./globals.css"; - -const GeistSans = GeistSansFont({ variable: "--font-geist-sans" }); -const GeistMono = GeistMonoFont({ variable: "--font-geist-mono" }); export const metadata: Metadata = { title: "Automaker - Autonomous AI Development Studio", description: "Build software autonomously with intelligent orchestration",