From 5f5e8b835e9ff3485e809a42aa77a0ee23185894 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:33:30 +0000 Subject: [PATCH 1/2] Update src/app/projects/[id]/page.tsx --- src/app/projects/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/projects/[id]/page.tsx b/src/app/projects/[id]/page.tsx index a1e4b89..a5f3bb5 100644 --- a/src/app/projects/[id]/page.tsx +++ b/src/app/projects/[id]/page.tsx @@ -160,7 +160,7 @@ export default function ProjectDetailPage() { features={project.results.map((result: string, index: number) => ({ id: String(index + 1), title: result, - author: "Achievement", description: `Successfully delivered this key result through strategic design and implementation.", tags: ["Success", "Impact"], + author: "Achievement", description: "Successfully delivered this key result through strategic design and implementation.", tags: ["Success", "Impact"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRowzw9k0ZSJ87n7KX34EwoE1/abstract-illustration-representing-creat-1773043067648-d1f91d56.png", imageAlt: result, }))} animationType="slide-up" -- 2.49.1 From 21951171391f867d80b4efe8839c9fc736afe9fd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:35:49 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 31 ++++++------------------------- 1 file changed, 6 insertions(+), 25 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 91321cf..48b097e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,9 @@ -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 geist_mono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "Portfolio | Creative Design & UX Expertise", description: "Explore innovative design solutions and digital experiences crafted with strategic thinking and creative excellence."}; + title: 'Portfolio', + description: 'Portfolio website', +}; export default function RootLayout({ children, @@ -21,17 +11,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - - - {children} - - - + + {children}