From 01ac4d61cf4c76e4ce68d80b64f0f3e0e2de09cf Mon Sep 17 00:00:00 2001 From: Ahmed Al-Taiar Date: Fri, 2 May 2025 17:09:43 -0400 Subject: [PATCH] Remove name from layout due to no longer being built at runtime --- src/app/layout.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f6dd058..526f8db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,6 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; -import config from "../../public/config/config.json"; const inter = Inter({ variable: "--font-inter", @@ -9,10 +8,7 @@ const inter = Inter({ preload: true, }); -export const metadata: Metadata = { - title: config.name.join(" "), - description: "Portfolio", -}; +export const metadata: Metadata = { title: "Portfolio" }; export default function RootLayout({ children,