From b418df07e3d039035eabd884a9350c1accdaa316 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:34:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7804795..2522df0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Johannes Brüggemann | Professional Portfolio", description: "Professional portfolio of Johannes Brüggemann. Experienced in strategic planning, process optimization, and team leadership.", keywords: "Johannes Brüggemann, professional, portfolio, strategy, leadership", openGraph: { - title: "Johannes Brüggemann | Professional Portfolio", description: "Discover my professional work and expertise in strategic solutions and team leadership.", siteName: "Johannes Brüggemann", type: "website"}, - twitter: { - card: "summary_large_image", title: "Johannes Brüggemann | Professional Portfolio", description: "Professional portfolio showcasing expertise in strategy and leadership."}, -}; + title: "Johannes Brüggemann", description: "Experienced professional dedicated to creating meaningful digital solutions and driving innovation through strategic collaboration and technical excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}