From 70933c2e9acd2052558aff252bfbb9721981b12f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:32:20 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c52da3c..91321cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,19 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const geist = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); -const geistMono = Geist_Mono({ +const geist_mono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Portfolio", description: "Innovative design solutions"}; + title: "Portfolio | Creative Design & UX Expertise", description: "Explore innovative design solutions and digital experiences crafted with strategic thinking and creative excellence."}; export default function RootLayout({ children, @@ -20,12 +22,15 @@ export default function RootLayout({ }) { return ( - - {children} + + + + {children} +