Remove name from layout due to no longer being built at runtime
All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 5s

This commit is contained in:
2025-05-02 17:09:43 -04:00
parent a6190c2694
commit 01ac4d61cf

View File

@@ -1,7 +1,6 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import config from "../../public/config/config.json";
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter",
@@ -9,10 +8,7 @@ const inter = Inter({
preload: true, preload: true,
}); });
export const metadata: Metadata = { export const metadata: Metadata = { title: "Portfolio" };
title: config.name.join(" "),
description: "Portfolio",
};
export default function RootLayout({ export default function RootLayout({
children, children,