From da06e31355fd855585efc00aa93106f0b18f5224 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:56:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4707bcd..5a5bff7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Portfolio - Design & Development Excellence", description: "Explore innovative digital solutions, cutting-edge design systems, and immersive 3D experiences. Premium portfolio of Dibendu Roy featuring 15+ years of professional expertise.", keywords: "portfolio, design, development, 3D, UI/UX, full-stack, innovation", openGraph: { - title: "Premium Portfolio - Design & Development Excellence", description: "Innovative digital solutions and premium design systems showcasing 15+ years of excellence.", siteName: "Dibendu Roy Portfolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbfLIYU0GCFTZapYpPT04HMzWT/a-striking-high-contrast-black-and-white-1772866339892-050a4668.png", alt: "Premium Portfolio Hero"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Portfolio - Design & Development Excellence", description: "Innovative digital solutions and premium design systems.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbfLIYU0GCFTZapYpPT04HMzWT/a-striking-high-contrast-black-and-white-1772866339892-050a4668.png"], - }, -}; + title: "Dibendu Roy - Premium Digital Design & Development", description: "Innovative digital solutions, cutting-edge design systems, and immersive 3D experiences that transform ideas into reality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}