Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-16 06:07:46 +00:00
4 changed files with 76 additions and 37 deletions

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -124,7 +124,7 @@ export default function HomePage() {
},
]}
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=1"
imageAlt="Design workspace and process"
useInvertedBackground={false}
/>
@@ -183,28 +183,28 @@ export default function HomePage() {
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=1",
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=1",
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=1",
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=1",
imageAlt: "Validation and testing",
},
]}
@@ -228,7 +228,7 @@ export default function HomePage() {
name: "MobileAero",
price: "Flight Booking App",
variant: "Mobile App • UX Research",
imageSrc: "http://img.b2bpic.net/free-vector/onboarding-app-screens-with-travelling_23-2148398026.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/onboarding-app-screens-with-travelling_23-2148398026.jpg?_wi=1",
imageAlt: "MobileAero Flight Booking Interface",
},
{
@@ -236,7 +236,7 @@ export default function HomePage() {
name: "Seamless Cravings",
price: "Food Delivery UX",
variant: "Mobile App • User Experience",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-drinking-coffee-cafe-bar_1170-638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-drinking-coffee-cafe-bar_1170-638.jpg?_wi=1",
imageAlt: "Seamless Cravings Delivery Interface",
},
{
@@ -244,7 +244,7 @@ export default function HomePage() {
name: "Government Portal",
price: "Citizen Services",
variant: "Web Platform • Accessibility",
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-appointment-booking_23-2148554938.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-appointment-booking_23-2148554938.jpg?_wi=1",
imageAlt: "Government Services Portal",
},
{
@@ -252,7 +252,7 @@ export default function HomePage() {
name: "Analytics Dashboard",
price: "Data Visualization",
variant: "SaaS Platform • Design System",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-infographic_23-2149207130.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-infographic_23-2149207130.jpg?_wi=1",
imageAlt: "Analytics Dashboard Interface",
},
{
@@ -260,7 +260,7 @@ export default function HomePage() {
name: "E-Commerce Redesign",
price: "Retail Platform",
variant: "Web App • Conversion Optimization",
imageSrc: "http://img.b2bpic.net/free-vector/fashion-shopping-application-template_23-2148663604.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/fashion-shopping-application-template_23-2148663604.jpg?_wi=1",
imageAlt: "E-Commerce Platform",
},
{
@@ -268,7 +268,7 @@ export default function HomePage() {
name: "Fintech Application",
price: "Digital Payments",
variant: "Mobile App • Security UX",
imageSrc: "http://img.b2bpic.net/free-vector/banking-app-interface-set_23-2148591122.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/banking-app-interface-set_23-2148591122.jpg?_wi=1",
imageAlt: "Fintech Payment Application",
},
]}
@@ -294,7 +294,7 @@ export default function HomePage() {
handle: "Product Lead at TechStartup",
testimonial: "Rohan transformed our chaotic checkout flow into a seamless experience. His user research insights led to a 35% increase in conversion rates. Exceptional work.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg?_wi=1",
imageAlt: "Priya Sharma",
},
{
@@ -303,7 +303,7 @@ export default function HomePage() {
handle: "Design Director at DesignCo",
testimonial: "His design systems work is immaculate. Rohan doesn't just create interfaces; he builds scalable, maintainable design foundations. A true professional.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5360.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5360.jpg?_wi=1",
imageAlt: "Amit Verma",
},
{
@@ -312,7 +312,7 @@ export default function HomePage() {
handle: "HR Manager at GlobalTech",
testimonial: "We hired Rohan for a critical government project. His attention to accessibility and user advocacy was outstanding. Delivered on time, exceeded expectations.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1",
imageAlt: "Sarah Chen",
},
{

View File

@@ -62,7 +62,7 @@ export default function WorkPage() {
},
]}
buttonAnimation="slide-up"
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=2"
imageAlt="Work and Case Studies"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -89,7 +89,7 @@ export default function WorkPage() {
name: "MobileAero",
price: "Flight Booking App",
variant: "Mobile App • UX Research • 2024",
imageSrc: "http://img.b2bpic.net/free-vector/onboarding-app-screens-with-travelling_23-2148398026.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/onboarding-app-screens-with-travelling_23-2148398026.jpg?_wi=2",
imageAlt: "MobileAero Flight Booking Interface",
},
{
@@ -97,7 +97,7 @@ export default function WorkPage() {
name: "Seamless Cravings",
price: "Food Delivery Platform",
variant: "Mobile App • User Experience • 2024",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-drinking-coffee-cafe-bar_1170-638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-drinking-coffee-cafe-bar_1170-638.jpg?_wi=2",
imageAlt: "Seamless Cravings Delivery Interface",
},
{
@@ -105,7 +105,7 @@ export default function WorkPage() {
name: "Government Portal",
price: "Citizen Services Platform",
variant: "Web Platform • Accessibility • 2023",
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-appointment-booking_23-2148554938.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-appointment-booking_23-2148554938.jpg?_wi=2",
imageAlt: "Government Services Portal",
},
{
@@ -113,7 +113,7 @@ export default function WorkPage() {
name: "Analytics Dashboard",
price: "Data Visualization Platform",
variant: "SaaS Platform • Design System • 2024",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-infographic_23-2149207130.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-infographic_23-2149207130.jpg?_wi=2",
imageAlt: "Analytics Dashboard Interface",
},
{
@@ -121,7 +121,7 @@ export default function WorkPage() {
name: "E-Commerce Redesign",
price: "Retail Platform Optimization",
variant: "Web App • Conversion Optimization • 2023",
imageSrc: "http://img.b2bpic.net/free-vector/fashion-shopping-application-template_23-2148663604.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/fashion-shopping-application-template_23-2148663604.jpg?_wi=2",
imageAlt: "E-Commerce Platform",
},
{
@@ -129,7 +129,7 @@ export default function WorkPage() {
name: "Fintech Application",
price: "Digital Payment System",
variant: "Mobile App • Security UX • 2024",
imageSrc: "http://img.b2bpic.net/free-vector/banking-app-interface-set_23-2148591122.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/banking-app-interface-set_23-2148591122.jpg?_wi=2",
imageAlt: "Fintech Payment Application",
},
]}
@@ -155,7 +155,7 @@ export default function WorkPage() {
handle: "Product Lead at TechStartup",
testimonial: "Rohan transformed our chaotic checkout flow into a seamless experience. His user research insights led to a 35% increase in conversion rates. Exceptional work.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg?_wi=2",
imageAlt: "Priya Sharma",
},
{
@@ -164,7 +164,7 @@ export default function WorkPage() {
handle: "Design Director at DesignCo",
testimonial: "His design systems work is immaculate. Rohan doesn't just create interfaces; he builds scalable, maintainable design foundations. A true professional.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5360.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5360.jpg?_wi=2",
imageAlt: "Amit Verma",
},
{
@@ -173,7 +173,7 @@ export default function WorkPage() {
handle: "HR Manager at GlobalTech",
testimonial: "We hired Rohan for a critical government project. His attention to accessibility and user advocacy was outstanding. Delivered on time, exceeded expectations.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2",
imageAlt: "Sarah Chen",
},
]}