From 1ffc55cc93d3888b4de07bc9fe1e35db5b014f76 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Sat, 1 Mar 2025 07:35:55 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(layout):=20remove=20unused=20f?= =?UTF-8?q?ont=20imports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The changes remove the unused Geist and Geist_Mono font imports from the layout.tsx file. This simplifies the code and reduces the overall bundle size of the application. --- app/layout.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 8280697..c685dd3 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,16 +1,6 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); export const metadata: Metadata = { title: 'AderKI Blog',