From b1095a5e5667bce73e46a575a2fab28e584b0477 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:31:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 742c9c2..d09b4fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Full-Stack Software Engineer | Portfolio", description: "Experienced full-stack developer specializing in React, Node.js, and cloud infrastructure. View my portfolio and let's build amazing products together.", keywords: "software engineer, full-stack developer, React, Node.js, web development", metadataBase: new URL("https://yourportfolio.com"), - alternates: { - canonical: "https://yourportfolio.com"}, - openGraph: { - title: "Full-Stack Software Engineer | Portfolio", description: "Experienced full-stack developer specializing in React, Node.js, and cloud infrastructure.", url: "https://yourportfolio.com", siteName: "Dev", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai5vRNoFH1pwSAQ2OS71p9EcD2/a-modern-software-engineer-workspace-wit-1773062850632-54bd24a5.png", alt: "A modern software engineer workspace with multiple monitors displaying code and dashboards. Clean de"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Full-Stack Software Engineer | Portfolio", description: "Experienced full-stack developer specializing in React, Node.js, and cloud infrastructure.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai5vRNoFH1pwSAQ2OS71p9EcD2/a-modern-software-engineer-workspace-wit-1773062850632-54bd24a5.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}