2025-07-11 16:54:37 +05:30
import { motion } from "framer-motion" ;
import {
Apple ,
ArrowRight ,
Component ,
DollarSign ,
Eye ,
Figma ,
FileText ,
Grid ,
Heart ,
Layers ,
Lightbulb ,
MessageCircle ,
Monitor ,
MousePointer2 ,
Palette ,
PenTool ,
Rocket ,
Search ,
Shield ,
2025-07-22 16:14:11 +05:30
Smartphone ,
Tablet ,
2025-07-11 16:54:37 +05:30
Target ,
TestTube ,
TrendingUp ,
2025-07-22 16:14:11 +05:30
Users ,
2025-07-11 16:54:37 +05:30
} from "lucide-react" ;
import FeaturedCaseStudies from "../components/FeaturedCaseStudies" ;
import { Footer } from "../components/Footer" ;
import { Navigation } from "../components/Navigation" ;
2025-07-22 16:14:11 +05:30
import {
Accordion ,
AccordionContent ,
AccordionItem ,
AccordionTrigger ,
} from "../components/ui/accordion" ;
2025-07-11 16:54:37 +05:30
import { Badge } from "../components/ui/badge" ;
import { Button } from "../components/ui/button" ;
import { Card , CardContent } from "../components/ui/card" ;
import { ShimmerButton } from "../components/ui/shimmer-button" ;
2025-07-22 16:14:11 +05:30
import { navigateTo } from "@/App" ;
2025-07-23 18:53:54 +05:30
import { Helmet } from "react-helmet-async" ;
2025-07-11 16:54:37 +05:30
// UI/UX Design Hero Section
const UIUXHeroWithCTA = ( ) = > {
return (
< section className = "relative py-20 overflow-hidden bg-black" >
2025-07-23 18:53:54 +05:30
< Helmet >
{ /* Page Title and Meta Description */ }
< title > UI / UX Design Services | Engaging Interfaces by WDI < / title >
< meta
name = "description"
content = "WDI’ s UI/UX design services create seamless, user-friendly digital experiences that boost engagement and drive business growth effectively."
/ >
{ /* Canonical Link */ }
2025-07-23 19:52:24 +05:30
< link rel = "canonical" href = "https://www.wdipl.com/services/ui-ux-design" / >
2025-07-23 18:53:54 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
< meta property = "og:title" content = "UI/UX Design Services | Engaging Interfaces by WDI" / >
< meta
property = "og:description"
content = "WDI’ s UI/UX design services create seamless, user-friendly digital experiences that boost engagement and drive business growth effectively."
/ >
< meta property = "og:url" content = "https://www.wdipl.com/services" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:image" content = "https://www.wdipl.com/your-preview-image.jpg" / >
{ /* Twitter Card Tags */ }
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:title" content = "UI/UX Design Services | Engaging Interfaces by WDI" / >
< meta
name = "twitter:description"
content = "WDI’ s UI/UX design services create seamless, user-friendly digital experiences that boost engagement and drive business growth effectively."
/ >
< meta name = "twitter:image" content = "https://www.wdipl.com/your-preview-image.jpg" / >
{ /* Social Profiles (using JSON-LD Schema) */ }
< script type = "application/ld+json" >
{ `
{
"@context" : "https://schema.org" ,
"@type" : "Organization" ,
"name" : "WDI" ,
"url" : "https://www.wdipl.com" ,
"sameAs" : [
"https://www.facebook.com/wdideas" ,
"https://www.linkedin.com/in/website-developers-india/" ,
"https://www.instagram.com/wdipl/"
]
}
` }
< / script >
< / Helmet >
2025-07-11 16:54:37 +05:30
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "grid lg:grid-cols-2 gap-16 items-center min-h-[90vh]" >
< motion.div
initial = { { opacity : 0 , x : - 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 } }
className = "space-y-8"
>
{ /* UI/UX Label */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
>
2025-07-22 16:14:11 +05:30
< span className = "text-white/70 text-sm font-medium" >
Design & Experience
< / span >
2025-07-11 16:54:37 +05:30
< / motion.div >
{ /* Main Heading */ }
< div className = "space-y-6" >
< h1 className = "text-4xl md:text-5xl lg:text-6xl font-semibold text-white leading-tight" >
Intuitive UI / UX Design Services
< / h1 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-lg text-gray-300 leading-relaxed max-w-lg" >
2025-07-22 16:14:11 +05:30
Crafting visually stunning and highly intuitive user interfaces
and experiences that engage users and drive business objectives .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* CTAs */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
className = "flex flex-col sm:flex-row gap-4"
>
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "text-lg px-8 py-4"
onClick = { ( ) = > navigateTo ( "/start-a-project" ) }
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-2" >
< Palette className = "w-5 h-5 flex-shrink-0" / >
< span > Design Your Next Product < / span >
< / div >
< / ShimmerButton >
< a
href = "#case-studies"
className = "inline-flex items-center justify-center gap-2 rounded-md bg-gray-800 px-8 py-4 text-lg font-medium text-white transition hover:bg-gray-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-700 whitespace-nowrap"
>
< Eye className = "w-4 h-4 flex-shrink-0" / >
< span > View Our Design Portfolio < / span >
< / a >
< / motion.div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Right side with Design Transformation visualization */ }
< motion.div
initial = { { opacity : 0 , x : 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
className = "relative flex flex-col items-center"
>
{ /* Device Mockups & Design Process */ }
< div className = "relative w-full max-w-2xl mx-auto" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
className = "relative"
>
{ /* Device Grid */ }
< div className = "grid grid-cols-3 gap-4 mb-8" >
{ /* Mobile Design */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.6 } }
className = "space-y-4"
>
< div className = "text-center mb-2" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-blue-500/20 text-blue-300 border-blue-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
MOBILE
< / Badge >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Mobile Interface */ }
< div className = "bg-gradient-to-br from-accent/20 to-blue-500/20 rounded-xl border border-accent/30 p-3 space-y-2 shadow-lg relative" >
< div className = "w-full h-2 bg-gray-800 rounded-full flex items-center justify-center" >
< div className = "w-6 h-1 bg-gray-600 rounded-full" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* App Interface */ }
< div className = "space-y-2" >
< div className = "h-8 bg-gradient-to-r from-accent to-purple-500 rounded-lg flex items-center px-2" >
< div className = "w-4 h-4 bg-white/30 rounded" > < / div >
< / div >
< div className = "space-y-1" >
< div className = "h-2 bg-gradient-to-r from-blue-400 to-purple-400 rounded w-full" > < / div >
< div className = "h-2 bg-gradient-to-r from-purple-400 to-pink-400 rounded w-3/4" > < / div >
< div className = "h-2 bg-gradient-to-r from-pink-400 to-red-400 rounded w-1/2" > < / div >
< / div >
< div className = "grid grid-cols-2 gap-1" >
< div className = "h-6 bg-gradient-to-r from-green-400 to-blue-400 rounded" > < / div >
< div className = "h-6 bg-gradient-to-r from-orange-400 to-red-400 rounded" > < / div >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex items-center justify-center" >
< Smartphone className = "w-3 h-3 text-accent/60" / >
< / div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Tablet Design */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.8 } }
className = "space-y-4"
>
< div className = "text-center mb-2" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
TABLET
< / Badge >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Tablet Interface */ }
< div className = "bg-gradient-to-br from-green-500/20 to-blue-500/20 rounded-xl border border-green-500/30 p-4 space-y-3 shadow-lg" >
{ /* Header */ }
< div className = "h-4 bg-gradient-to-r from-green-400 to-blue-400 rounded-lg" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Content Grid */ }
< div className = "grid grid-cols-2 gap-2" >
< div className = "space-y-1" >
< div className = "h-3 bg-gradient-to-r from-blue-400 to-purple-400 rounded w-full" > < / div >
< div className = "h-1 bg-gray-400/50 rounded w-3/4" > < / div >
< div className = "h-1 bg-gray-400/50 rounded w-1/2" > < / div >
< / div >
< div className = "h-12 bg-gradient-to-br from-purple-400/20 to-pink-400/20 rounded border border-purple-400/30" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Navigation */ }
< div className = "flex gap-1" >
< div className = "flex-1 h-2 bg-gradient-to-r from-accent to-purple-500 rounded" > < / div >
< div className = "w-6 h-2 bg-gray-400/30 rounded" > < / div >
< div className = "w-6 h-2 bg-gray-400/30 rounded" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex items-center justify-center" >
< Tablet className = "w-3 h-3 text-green-400/60" / >
< / div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Desktop Design */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 1.0 } }
className = "space-y-4"
>
< div className = "text-center mb-2" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-purple-500/20 text-purple-300 border-purple-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
DESKTOP
< / Badge >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Desktop Interface */ }
< div className = "bg-gradient-to-br from-purple-500/20 to-pink-500/20 rounded-xl border border-purple-500/30 p-4 space-y-3 shadow-lg" >
{ /* Browser Bar */ }
< div className = "flex items-center gap-1 mb-2" >
< div className = "w-1.5 h-1.5 bg-red-400 rounded-full" > < / div >
< div className = "w-1.5 h-1.5 bg-yellow-400 rounded-full" > < / div >
< div className = "w-1.5 h-1.5 bg-green-400 rounded-full" > < / div >
< div className = "flex-1 h-1 bg-gray-400/30 rounded ml-2" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Header */ }
< div className = "h-4 bg-gradient-to-r from-purple-400 to-pink-400 rounded" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Content Layout */ }
< div className = "flex gap-2" >
< div className = "w-1/3 space-y-1" >
< div className = "h-2 bg-gradient-to-r from-blue-400 to-purple-400 rounded" > < / div >
< div className = "h-1 bg-gray-400/50 rounded" > < / div >
< div className = "h-1 bg-gray-400/50 rounded w-2/3" > < / div >
< / div >
< div className = "flex-1 h-8 bg-gradient-to-br from-accent/20 to-blue-500/20 rounded border border-accent/30" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex items-center justify-center" >
< Monitor className = "w-3 h-3 text-purple-400/60" / >
< / div >
< / div >
< / motion.div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Wireframe to Design Transformation */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 1.2 } }
className = "relative bg-card/20 backdrop-blur-md rounded-2xl border border-white/10 p-6 mb-8"
>
2025-07-22 16:14:11 +05:30
< h3 className = "text-white text-center mb-4 font-medium" >
Design Process Transformation
< / h3 >
2025-07-11 16:54:37 +05:30
< div className = "grid grid-cols-3 gap-4 items-center" >
{ /* Wireframe */ }
< div className = "text-center space-y-2" >
< div className = "bg-gray-800 rounded-lg p-3 space-y-2" >
< div className = "h-2 bg-gray-600 rounded w-full" > < / div >
< div className = "grid grid-cols-2 gap-1" >
< div className = "h-4 bg-gray-600 rounded" > < / div >
< div className = "h-4 bg-gray-600 rounded" > < / div >
< / div >
< div className = "h-1 bg-gray-600 rounded w-3/4" > < / div >
< div className = "h-1 bg-gray-600 rounded w-1/2" > < / div >
< / div >
< span className = "text-xs text-gray-400" > Wireframes < / span >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Arrow */ }
< div className = "flex justify-center" >
< ArrowRight className = "w-6 h-6 text-accent" / >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Final Design */ }
< div className = "text-center space-y-2" >
< div className = "bg-gradient-to-br from-accent/20 to-blue-500/20 rounded-lg p-3 space-y-2 border border-accent/30" >
< div className = "h-2 bg-gradient-to-r from-accent to-blue-500 rounded w-full" > < / div >
< div className = "grid grid-cols-2 gap-1" >
< div className = "h-4 bg-gradient-to-r from-blue-500 to-purple-500 rounded" > < / div >
< div className = "h-4 bg-gradient-to-r from-purple-500 to-pink-500 rounded" > < / div >
< / div >
< div className = "h-1 bg-gradient-to-r from-green-400 to-blue-400 rounded w-3/4" > < / div >
< div className = "h-1 bg-gradient-to-r from-orange-400 to-red-400 rounded w-1/2" > < / div >
< / div >
2025-07-22 16:14:11 +05:30
< span className = "text-xs text-gray-300" >
Final Design
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Design Tools Icons */ }
< div className = "grid grid-cols-4 gap-4" >
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 1.4 } }
className = "text-center"
>
< div className = "w-12 h-12 bg-orange-500/20 rounded-lg flex items-center justify-center mx-auto mb-2" >
< Figma className = "w-6 h-6 text-orange-400" / >
< / div >
< span className = "text-xs text-gray-300" > Figma < / span >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 1.5 } }
className = "text-center"
>
< div className = "w-12 h-12 bg-blue-500/20 rounded-lg flex items-center justify-center mx-auto mb-2" >
< PenTool className = "w-6 h-6 text-blue-400" / >
< / div >
< span className = "text-xs text-gray-300" > Sketch < / span >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 1.6 } }
className = "text-center"
>
< div className = "w-12 h-12 bg-purple-500/20 rounded-lg flex items-center justify-center mx-auto mb-2" >
< Palette className = "w-6 h-6 text-purple-400" / >
< / div >
< span className = "text-xs text-gray-300" > Adobe XD < / span >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 1.7 } }
className = "text-center"
>
< div className = "w-12 h-12 bg-green-500/20 rounded-lg flex items-center justify-center mx-auto mb-2" >
< TestTube className = "w-6 h-6 text-green-400" / >
< / div >
< span className = "text-xs text-gray-300" > Testing < / span >
< / motion.div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Feature Badges */ }
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 1.8 } }
className = "flex justify-center gap-4 flex-wrap mt-8"
>
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-blue-500/20 text-blue-300 border-blue-500/30"
>
2025-07-11 16:54:37 +05:30
< Eye className = "w-3 h-3 mr-1" / >
User - Focused
< / Badge >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30"
>
2025-07-11 16:54:37 +05:30
< Palette className = "w-3 h-3 mr-1" / >
Beautiful
< / Badge >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-purple-500/20 text-purple-300 border-purple-500/30"
>
2025-07-11 16:54:37 +05:30
< Smartphone className = "w-3 h-3 mr-1" / >
Responsive
< / Badge >
< / motion.div >
< / div >
< / motion.div >
< / div >
< / div >
< / section >
) ;
} ;
// Key Benefits of Exceptional UI/UX
const UIUXBenefits = ( ) = > {
const benefits = [
{
icon : Users ,
title : "Increased User Engagement" ,
2025-07-22 16:14:11 +05:30
description : "Delightful experiences keep users coming back." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : TrendingUp ,
title : "Higher Conversion Rates" ,
2025-07-22 16:14:11 +05:30
description : "Intuitive flows guide users to desired actions." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Reduced Development Costs" ,
2025-07-22 16:14:11 +05:30
description : "Clear designs minimize reworks and errors." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Shield ,
title : "Stronger Brand Identity" ,
2025-07-22 16:14:11 +05:30
description : "Consistent, professional design builds trust." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Heart ,
title : "Improved User Satisfaction" ,
2025-07-22 16:14:11 +05:30
description : "Seamless interactions lead to positive sentiment." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Competitive Advantage" ,
2025-07-22 16:14:11 +05:30
description : "Superior design differentiates your product." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Why User - Centric Design Matters
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ benefits . map ( ( benefit , index ) = > {
const IconComponent = benefit . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// UI/UX Design Process
const UIUXDesignProcess = ( ) = > {
const steps = [
{
title : "User Research & Discovery" ,
2025-07-22 16:14:11 +05:30
description :
"Deep dive into user behaviors, needs, pain points, and goals through interviews, surveys, analytics, and competitive analysis to inform design decisions." ,
icon : Search ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Information Architecture & Wireframing" ,
2025-07-22 16:14:11 +05:30
description :
"Structuring content hierarchy, user flows, and navigation patterns with low-fidelity wireframes to establish the foundation of user experience." ,
icon : Grid ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "UI Design & Prototyping" ,
2025-07-22 16:14:11 +05:30
description :
"Creating high-fidelity visual designs with interactive prototypes that bring the user interface to life for testing and stakeholder feedback." ,
icon : Palette ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Usability Testing & Iteration" ,
2025-07-22 16:14:11 +05:30
description :
"Validating design solutions with real users through testing sessions, gathering feedback, and iterating on designs to optimize user experience." ,
icon : TestTube ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Handoff & Design System Creation" ,
2025-07-22 16:14:11 +05:30
description :
"Delivering production-ready designs with comprehensive design systems, style guides, and developer documentation for seamless implementation." ,
icon : FileText ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Our Collaborative & Iterative Design Process
< / h2 >
< / motion.div >
< div className = "relative" >
{ /* Timeline line */ }
< div className = "absolute left-1/2 transform -translate-x-1/2 h-full w-0.5 bg-gradient-to-b from-accent via-accent/50 to-transparent hidden lg:block" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "space-y-16" >
{ steps . map ( ( step , index ) = > {
const IconComponent = step . icon ;
const isEven = index % 2 === 0 ;
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
return (
< motion.div
key = { index }
initial = { { opacity : 0 , x : isEven ? - 50 : 50 } }
whileInView = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : index * 0.2 } }
viewport = { { once : true } }
2025-07-22 16:14:11 +05:30
className = { ` flex items-center ${
isEven ? "lg:flex-row" : "lg:flex-row-reverse"
} flex - col lg :gap - 16 gap - 8 ` }
2025-07-11 16:54:37 +05:30
>
2025-07-22 16:14:11 +05:30
< div
className = { ` flex-1 ${
isEven ? "lg:text-right" : "lg:text-left"
} text - center lg :text - left ` }
>
2025-07-11 16:54:37 +05:30
< div className = "bg-card/20 backdrop-blur-md rounded-2xl border border-white/10 p-8 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl" >
< div className = "flex items-center gap-4 mb-4 justify-center lg:justify-start" >
< div className = "w-12 h-12 bg-accent/20 rounded-xl flex items-center justify-center" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
2025-07-22 16:14:11 +05:30
< div className = "text-2xl font-bold text-accent" >
0 { index + 1 }
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< h3 className = "text-2xl font-semibold text-foreground mb-4" >
{ step . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ step . description }
< / p >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Timeline dot */ }
< div className = "w-4 h-4 bg-accent rounded-full border-4 border-background z-10 hidden lg:block" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex-1 hidden lg:block" > < / div >
< / motion.div >
) ;
} ) }
< / div >
< / div >
< / div >
< / section >
) ;
} ;
// UI/UX Design Services
const UIUXDesignServices = ( ) = > {
const services = [
{
title : "User Research & Analysis" ,
description : "Understanding user needs and behaviors." ,
icon : Search ,
2025-07-22 16:14:11 +05:30
features : [
"User Interviews" ,
"Surveys & Analytics" ,
"Persona Development" ,
"Journey Mapping" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Wireframing & Information Architecture" ,
description : "Structuring content and user flows." ,
icon : Grid ,
2025-07-22 16:14:11 +05:30
features : [
"User Flow Diagrams" ,
"Site Maps" ,
"Low-fi Wireframes" ,
"Content Strategy" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Interactive Prototyping" ,
description : "Bringing designs to life for testing and feedback." ,
icon : MousePointer2 ,
2025-07-22 16:14:11 +05:30
features : [
"Clickable Prototypes" ,
"Micro-interactions" ,
"Animation Design" ,
"User Testing" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "User Interface (UI) Design" ,
description : "Crafting visual elements, typography, and color palettes." ,
icon : Palette ,
2025-07-22 16:14:11 +05:30
features : [ "Visual Design" , "Typography" , "Color Systems" , "Iconography" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "User Experience (UX) Strategy" ,
description : "Defining the overall user journey and interactions." ,
icon : Target ,
2025-07-22 16:14:11 +05:30
features : [
"Experience Strategy" ,
"Interaction Design" ,
"Usability Optimization" ,
"Conversion Design" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Design System Development" ,
2025-07-22 16:14:11 +05:30
description :
"Creating reusable components for consistency and efficiency." ,
2025-07-11 16:54:37 +05:30
icon : Component ,
2025-07-22 16:14:11 +05:30
features : [
"Component Libraries" ,
"Style Guides" ,
"Design Tokens" ,
"Documentation" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Usability Testing & Optimization" ,
description : "Validating designs with real users and iterating." ,
icon : TestTube ,
2025-07-22 16:14:11 +05:30
features : [
"User Testing" ,
"A/B Testing" ,
"Heuristic Evaluation" ,
"Performance Analysis" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Mobile-First & Responsive Design" ,
description : "Ensuring optimal experiences across all devices." ,
icon : Smartphone ,
2025-07-22 16:14:11 +05:30
features : [
"Mobile Design" ,
"Responsive Layouts" ,
"Cross-platform" ,
"Device Optimization" ,
] ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Our Comprehensive UI / UX Design Capabilities
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ services . slice ( 0 , 6 ) . map ( ( service , index ) = > {
const IconComponent = service . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ service . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed mb-6" >
{ service . description }
< / p >
< div className = "space-y-2" >
2025-07-22 16:14:11 +05:30
< h4 className = "text-sm font-medium text-white" >
Key Features :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ service . features . map ( ( feature ) = > (
2025-07-22 16:14:11 +05:30
< Badge
key = { feature }
variant = "secondary"
className = "text-xs bg-gray-800/50 text-gray-300 border-gray-700"
>
2025-07-11 16:54:37 +05:30
{ feature }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Last two service cards */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 gap-8 max-w-4xl mx-auto mt-8"
>
{ services . slice ( 6 ) . map ( ( service , index ) = > {
const IconComponent = service . icon ;
return (
< motion.div
key = { index + 6 }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : ( index + 6 ) * 0.1 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ service . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed mb-6" >
{ service . description }
< / p >
< div className = "space-y-2" >
2025-07-22 16:14:11 +05:30
< h4 className = "text-sm font-medium text-white" >
Key Features :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ service . features . map ( ( feature ) = > (
2025-07-22 16:14:11 +05:30
< Badge
key = { feature }
variant = "secondary"
className = "text-xs bg-gray-800/50 text-gray-300 border-gray-700"
>
2025-07-11 16:54:37 +05:30
{ feature }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Design Tools & Methodologies
const DesignToolsMethodologies = ( ) = > {
const designTools = [
{ name : "Figma" , icon : Figma , category : "Design Tool" , color : "orange" } ,
{ name : "Sketch" , icon : PenTool , category : "Design Tool" , color : "blue" } ,
2025-07-22 16:14:11 +05:30
{
name : "Adobe XD" ,
icon : Palette ,
category : "Design Tool" ,
color : "purple" ,
} ,
2025-07-11 16:54:37 +05:30
{ name : "Miro" , icon : Grid , category : "Collaboration" , color : "yellow" } ,
{ name : "Maze" , icon : Target , category : "User Testing" , color : "green" } ,
2025-07-22 16:14:11 +05:30
{ name : "Hotjar" , icon : Eye , category : "Analytics" , color : "red" } ,
2025-07-11 16:54:37 +05:30
] ;
const methodologies = [
{ name : "Design Thinking" , icon : Lightbulb , category : "Methodology" } ,
{ name : "Atomic Design" , icon : Component , category : "System Design" } ,
{ name : "Material Design" , icon : Layers , category : "Design System" } ,
2025-07-22 16:14:11 +05:30
{
name : "Human Interface Guidelines" ,
icon : Apple ,
category : "Design System" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Design Tools & Methodologies
< / h2 >
< p className = "text-xl text-muted-foreground max-w-3xl mx-auto leading-relaxed" >
2025-07-22 16:14:11 +05:30
Leveraging industry - standard tools and methodologies for impactful
design .
2025-07-11 16:54:37 +05:30
< / p >
< / motion.div >
{ /* Design Tools */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "mb-16"
>
2025-07-22 16:14:11 +05:30
< h3 className = "text-2xl font-semibold text-foreground mb-8 text-center" >
Design Tools
< / h3 >
2025-07-11 16:54:37 +05:30
< div className = "grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-6" >
{ designTools . map ( ( tool , index ) = > {
const IconComponent = tool . icon ;
const colorClasses = {
orange : "bg-orange-500/20 text-orange-400 border-orange-500/30" ,
blue : "bg-blue-500/20 text-blue-400 border-blue-500/30" ,
purple : "bg-purple-500/20 text-purple-400 border-purple-500/30" ,
yellow : "bg-yellow-500/20 text-yellow-400 border-yellow-500/30" ,
green : "bg-green-500/20 text-green-400 border-green-500/30" ,
2025-07-22 16:14:11 +05:30
red : "bg-red-500/20 text-red-400 border-red-500/30" ,
2025-07-11 16:54:37 +05:30
} ;
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 , scale : 1.05 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl p-6 text-center" >
2025-07-22 16:14:11 +05:30
< div
className = { ` w-12 h-12 rounded-lg flex items-center justify-center mx-auto mb-4 ${
colorClasses [ tool . color as keyof typeof colorClasses ] ||
"bg-accent/20 text-accent border-accent/30"
} ` }
>
2025-07-11 16:54:37 +05:30
< IconComponent className = "w-6 h-6" / >
< / div >
2025-07-22 16:14:11 +05:30
< h4 className = "font-semibold text-foreground text-sm mb-1" >
{ tool . name }
< / h4 >
< p className = "text-xs text-muted-foreground" >
{ tool . category }
< / p >
2025-07-11 16:54:37 +05:30
< / Card >
< / motion.div >
) ;
} ) }
< / div >
< / motion.div >
{ /* Methodologies */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
>
2025-07-22 16:14:11 +05:30
< h3 className = "text-2xl font-semibold text-foreground mb-8 text-center" >
Design Methodologies
< / h3 >
2025-07-11 16:54:37 +05:30
< div className = "grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto" >
{ methodologies . map ( ( methodology , index ) = > {
const IconComponent = methodology . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 , scale : 1.05 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl p-6 text-center" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mx-auto mb-4" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
2025-07-22 16:14:11 +05:30
< h4 className = "font-semibold text-foreground text-sm mb-1" >
{ methodology . name }
< / h4 >
< p className = "text-xs text-muted-foreground" >
{ methodology . category }
< / p >
2025-07-11 16:54:37 +05:30
< / Card >
< / motion.div >
) ;
} ) }
< / div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Mid-Page CTA
const UIUXInlineCTA = ( ) = > {
return (
< section className = "py-20" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "space-y-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-purple-500" >
< div className = "bg-background rounded-full px-6 py-3 flex items-center gap-2" >
< Palette className = "w-5 h-5 text-foreground" / >
2025-07-22 16:14:11 +05:30
< span className = "text-foreground text-base font-medium" >
UI / UX Design
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground leading-tight" >
Ready to Elevate Your { " " }
< span className = "text-accent" > Product ' s User Experience ? < / span >
< / h2 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-xl text-muted-foreground leading-relaxed max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
Let our design experts create an interface that truly connects
with your audience .
2025-07-11 16:54:37 +05:30
< / p >
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl"
onClick = { ( ) = > navigateTo ( "/start-a-project" ) }
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< MessageCircle className = "w-6 h-6 flex-shrink-0" / >
< span > Get a Free Design Consultation < / span >
< / div >
< / ShimmerButton >
< / motion.div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Hire UI/UX Designers
const HireUIUXDesigners = ( ) = > {
const designerTypes = [
{
title : "Senior UI/UX Designers" ,
description : "Experienced designers with full-stack design capabilities" ,
icon : Palette ,
2025-07-22 16:14:11 +05:30
skills : [
"User Research" ,
"Visual Design" ,
"Prototyping" ,
"Usability Testing" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "UX Researchers" ,
description : "Specialists in user behavior and research methodologies" ,
icon : Search ,
2025-07-22 16:14:11 +05:30
skills : [
"User Interviews" ,
"Usability Testing" ,
"Data Analysis" ,
"Persona Development" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Visual/UI Designers" ,
description : "Experts in creating beautiful and functional interfaces" ,
icon : PenTool ,
2025-07-22 16:14:11 +05:30
skills : [ "Visual Design" , "Typography" , "Color Theory" , "Design Systems" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Interaction Designers" ,
description : "Specialists in crafting engaging user interactions" ,
icon : MousePointer2 ,
2025-07-22 16:14:11 +05:30
skills : [ "Micro-interactions" , "Animation" , "Prototyping" , "User Flows" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Product Designers" ,
description : "Strategic designers who understand business goals" ,
icon : Target ,
2025-07-22 16:14:11 +05:30
skills : [
"Product Strategy" ,
"Design Thinking" ,
"Cross-functional Collaboration" ,
"MVP Design" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Design System Specialists" ,
description : "Experts in creating scalable design systems" ,
icon : Component ,
2025-07-22 16:14:11 +05:30
skills : [
"Component Libraries" ,
"Design Tokens" ,
"Documentation" ,
"Style Guides" ,
] ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Hire World - Class UI / UX Designers
< / h2 >
< p className = "text-xl text-gray-300 max-w-3xl mx-auto leading-relaxed" >
2025-07-22 16:14:11 +05:30
Access our pool of talented designers specializing in intuitive
interfaces , user research , and strategic UX .
2025-07-11 16:54:37 +05:30
< / p >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12"
>
{ designerTypes . map ( ( type , index ) = > {
const IconComponent = type . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8" >
< div className = "w-12 h-12 bg-accent/20 rounded-lg flex items-center justify-center mb-6" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ type . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed mb-6" >
{ type . description }
< / p >
< div className = "space-y-2" >
2025-07-22 16:14:11 +05:30
< h4 className = "text-sm font-medium text-white" >
Core Skills :
< / h4 >
2025-07-11 16:54:37 +05:30
< div className = "flex flex-wrap gap-2" >
{ type . skills . map ( ( skill ) = > (
2025-07-22 16:14:11 +05:30
< Badge
key = { skill }
variant = "secondary"
className = "text-xs bg-gray-800/50 text-gray-300 border-gray-700"
>
2025-07-11 16:54:37 +05:30
{ skill }
< / Badge >
) ) }
< / div >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "text-center space-y-6"
>
< div className = "flex flex-col sm:flex-row gap-4 justify-center" >
< ShimmerButton className = "text-lg px-8 py-4" >
< div className = "inline-flex items-center gap-2" >
< Users className = "w-5 h-5 flex-shrink-0" / >
< span > Hire UI / UX Designers < / span >
< / div >
< / ShimmerButton >
< Button
variant = "outline"
size = "lg"
2025-07-22 16:14:11 +05:30
className = "text-lg px-8 py-4 h-auto border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
2025-07-11 16:54:37 +05:30
>
< div className = "inline-flex items-center gap-2" >
< Eye className = "w-5 h-5 flex-shrink-0" / >
< span > View Portfolios < / span >
< / div >
< / Button >
< / div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// UI/UX FAQs
const UIUXFAQs = ( ) = > {
const faqs = [
{
question : "What is the difference between UI and UX?" ,
2025-07-22 16:14:11 +05:30
answer :
"UI (User Interface) focuses on the visual elements users interact with - buttons, menus, typography, colors, and layout. UX (User Experience) encompasses the entire user journey, including research, strategy, information architecture, usability, and how users feel when interacting with your product. UI is about how it looks, UX is about how it works and feels. Both are essential for creating successful digital products." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "How important is user research in the design process?" ,
2025-07-22 16:14:11 +05:30
answer :
"User research is fundamental to successful design. It helps us understand your target audience's needs, behaviors, pain points, and goals before we start designing. This research-driven approach reduces the risk of creating interfaces that don't resonate with users, saves development time and costs, and ensures higher user satisfaction and conversion rates. We conduct user interviews, surveys, usability testing, and competitive analysis to inform our design decisions." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "Do you provide design systems for future development?" ,
2025-07-22 16:14:11 +05:30
answer :
"Yes, we create comprehensive design systems that include component libraries, style guides, design tokens, and detailed documentation. These systems ensure consistency across your product, speed up future development, maintain brand integrity, and make it easier for your team to scale and maintain the design. We provide assets in formats that work seamlessly with development workflows, including design handoff tools and code snippets." ,
2025-07-11 16:54:37 +05:30
} ,
{
question : "Can you redesign an existing product's UI/UX?" ,
2025-07-22 16:14:11 +05:30
answer :
"Absolutely. We specialize in redesigning existing products to improve user experience, modernize visual design, increase conversions, and align with current best practices. Our process includes auditing your current design, analyzing user feedback and analytics, identifying pain points and opportunities, and creating a redesign strategy that improves user satisfaction while maintaining familiar elements that users already know and trust." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Frequently Asked Questions
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "max-w-4xl mx-auto"
>
< Accordion type = "single" collapsible className = "space-y-8" >
{ faqs . map ( ( faq , index ) = > (
2025-07-22 16:14:11 +05:30
< AccordionItem
key = { index }
value = { ` item- ${ index } ` }
2025-07-11 16:54:37 +05:30
className = "bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 px-10 shadow-lg"
>
< AccordionTrigger className = "text-left hover:no-underline py-10 text-xl" >
2025-07-22 16:14:11 +05:30
< span className = "font-semibold text-white" >
{ faq . question }
< / span >
2025-07-11 16:54:37 +05:30
< / AccordionTrigger >
< AccordionContent className = "text-gray-300 pb-10 text-lg leading-relaxed" >
{ faq . answer }
< / AccordionContent >
< / AccordionItem >
) ) }
< / Accordion >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Final CTA Section
const UIUXFinalCTA = ( ) = > {
return (
< section className = "py-20 relative overflow-hidden" >
< div className = "container mx-auto px-6 lg:px-8 relative z-10" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
viewport = { { once : true } }
className = "mb-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-purple-500" >
< div className = "bg-background rounded-full px-6 py-3 flex items-center gap-2" >
< Palette className = "w-5 h-5 text-foreground" / >
2025-07-22 16:14:11 +05:30
< span className = "text-foreground text-base font-medium" >
UI / UX Design
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / motion.div >
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6 leading-tight" >
Design Digital Products That { " " }
< span className = "text-accent" > Users Love < / span >
< / h2 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.p
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
viewport = { { once : true } }
className = "text-xl text-muted-foreground mb-12 max-w-2xl mx-auto leading-relaxed"
>
2025-07-22 16:14:11 +05:30
Partner with WDI for compelling UI / UX design that captures attention
and drives meaningful interactions .
2025-07-11 16:54:37 +05:30
< / motion.p >
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "space-y-8"
>
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "px-12 py-6 text-xl rounded-2xl shadow-2xl hover:shadow-accent/25"
onClick = { ( ) = > navigateTo ( "/start-a-project" ) }
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< Rocket className = "w-6 h-6 flex-shrink-0" / >
< span > Start Your Design Project < / span >
< / div >
< / ShimmerButton >
< p className = "text-muted-foreground text-sm" >
User Research • Interface Design • Prototyping • Testing
< / p >
< / motion.div >
< / motion.div >
< / div >
{ /* Background Decorative Elements */ }
< div className = "absolute top-0 left-0 w-full h-full pointer-events-none overflow-hidden" >
< div className = "absolute top-20 left-20 w-60 h-60 bg-accent/5 rounded-full blur-3xl" > < / div >
< div className = "absolute bottom-20 right-20 w-60 h-60 bg-blue-500/5 rounded-full blur-3xl" > < / div >
< div className = "absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-80 h-80 bg-purple-500/3 rounded-full blur-3xl" > < / div >
< / div >
< / section >
) ;
} ;
// Main UI/UX Design Page
export const UIUXDesign = ( ) = > {
return (
< div className = "dark min-h-screen" >
< Navigation / >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Hero Section */ }
< section className = "bg-black" >
< UIUXHeroWithCTA / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Benefits */ }
< section className = "bg-background" >
< UIUXBenefits / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Design Process */ }
< section className = "bg-card" >
< UIUXDesignProcess / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Services */ }
< section className = "bg-background" >
< UIUXDesignServices / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Tools & Methodologies */ }
< section className = "bg-card" >
< DesignToolsMethodologies / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Featured Case Studies - NEW SECTION */ }
< section id = "case-studies" className = "bg-background" >
< FeaturedCaseStudies / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Mid-Page CTA */ }
< section className = "bg-card" >
< UIUXInlineCTA / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Hire Designers */ }
< section className = "bg-background" >
< HireUIUXDesigners / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* FAQs */ }
< section className = "bg-card" >
< UIUXFAQs / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Final CTA */ }
< section className = "bg-background" >
< UIUXFinalCTA / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Footer */ }
< section className = "bg-card" >
< Footer / >
< / section >
< / div >
) ;
2025-07-22 16:14:11 +05:30
} ;