From 3594979c6ce73c00dd40ca66a1f3d88923f7c0ee Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:44:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf5eeaf..c558406 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Java Developer & Backend Architect | Alex Chen", description: "Expert Java developer specializing in scalable backend systems, microservices, and enterprise solutions. 8+ years crafting high-performance applications.", keywords: "Java developer, backend developer, Spring Boot, microservices, enterprise software, system design", metadataBase: new URL("https://alexchen.dev"), - alternates: { - canonical: "https://alexchen.dev"}, - openGraph: { - title: "Java Developer & Backend Architect | Alex Chen", description: "Building scalable, performant backend systems with Java and microservices", url: "https://alexchen.dev", siteName: "Alex Chen Portfolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-modern-developer-workspace-with-multip-1772652815751-689e2337.png", alt: "Java Developer Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Java Developer & Backend Architect", description: "Expert backend engineer specializing in scalable systems and enterprise software", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUgR2hYbOYemnWNslVhhHMDm8R/a-modern-developer-workspace-with-multip-1772652815751-689e2337.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Alex Chen - Java Developer & Backend Architect", description: "Backend developer specializing in Java, Spring Boot, and microservices architecture. 8+ years building scalable enterprise solutions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}