From 471e6d4c28d8f9e6f199081082f1690fd97b34f6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 06:07:41 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 979ff69..0928a64 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -56,7 +56,7 @@ export default function AboutPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/people-using-digital-device-while-meeting_23-2149085937.jpg" + imageSrc="http://img.b2bpic.net/free-photo/people-using-digital-device-while-meeting_23-2149085937.jpg?_wi=2" imageAlt="Design workspace and process" useInvertedBackground={false} /> @@ -115,28 +115,28 @@ export default function AboutPage() { id: 1, title: "Discover", description: "Understand the user's world through research, interviews, and empathy mapping. No assumptions — only evidence.", - imageSrc: "http://img.b2bpic.net/free-photo/creative-people-diverse-ethnicities-working-business-plan-together-analyzing-growth-rate-value-goods-services-studying-market-counting-loss-using-touch-pad-pc-making-notes_273609-5545.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/creative-people-diverse-ethnicities-working-business-plan-together-analyzing-growth-rate-value-goods-services-studying-market-counting-loss-using-touch-pad-pc-making-notes_273609-5545.jpg?_wi=2", imageAlt: "Discovery phase research", }, { id: 2, title: "Define", description: "Translate insights into problem statements, user journeys, and information architecture. Clarity before creativity.", - imageSrc: "http://img.b2bpic.net/free-photo/crop-men-making-notes-document_23-2147785065.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crop-men-making-notes-document_23-2147785065.jpg?_wi=2", imageAlt: "Define phase planning", }, { id: 3, title: "Design", description: "Iterative wireframes to high-fidelity prototypes. Every layout decision is intentional, every interaction deliberate.", - imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page-template_23-2149051559.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page-template_23-2149051559.jpg?_wi=3", imageAlt: "Design phase execution", }, { id: 4, title: "Validate", description: "Test with real users. Gather data. Refine until the experience is not just functional — but frictionless.", - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-data-analysis-template_23-2150717679.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-data-analysis-template_23-2150717679.jpg?_wi=2", imageAlt: "Validation and testing", }, ]} -- 2.49.1 From fb10377e9f9d762cf9934aec4f97cd0954e674d9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 06:07:41 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..933994f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Rohan Pawar — UI/UX Designer & User Advocate", + description: "Premium portfolio of Rohan Pawar, UI/UX Designer. End-to-end product design, user research, and design systems for tech companies and design agencies.", + keywords: "UI Designer, UX Designer, Product Design, User Research, Design System, Portfolio, Bangalore Designer", + metadataBase: new URL("https://dzignr5-portfolio-enhanced.vercel.app"), + alternates: { + canonical: "https://dzignr5-portfolio-enhanced.vercel.app", + }, + openGraph: { + title: "Rohan Pawar — UI/UX Designer & User Advocate", + description: "Complexity to Clarity. Premium product design, user research, and strategic design systems.", + url: "https://dzignr5-portfolio-enhanced.vercel.app", + siteName: "DZiGNR_5 Portfolio", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/handsome-young-african-man-isolated_171337-9759.jpg", + alt: "Rohan Pawar UI/UX Designer Portfolio", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Rohan Pawar — UI/UX Designer", + description: "End-to-end product design & user advocacy. Solving complex problems with clarity.", + images: ["http://img.b2bpic.net/free-photo/handsome-young-african-man-isolated_171337-9759.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}