// ============================================ // PIXELPULSE — Sections part 2 // ============================================ const { useState: useStateT, useEffect: useEffectT, useRef: useRefT } = React; // ===== About / Stats ===== function About() { return (
[ 04 / ABOUT ]

A boutique studio
for mobile-first teams.

Pixelpulse Infosolution is a 15-person mobile app studio based in Surat, India. For three years we've partnered with founders, growth teams and enterprises to ship apps that customers actually open.

Small enough to care, deep enough to deliver — every project runs through the same senior team end-to-end.

[ Apps Shipped ]
[ Years In Business ]
[ Team Members ]
[ Total Downloads ]

How we work

{[ { t: 'Discover', d: 'Workshops, audits and rapid prototyping to lock the right product.' }, { t: 'Design', d: 'Research-backed flows and a design system your team can build on.' }, { t: 'Develop', d: 'Two-week sprints, weekly demos, code reviews on every commit.' }, { t: 'Deploy', d: 'Store submissions, performance monitoring, and post-launch support.' }, ].map((step, i) => (
0{i + 1}
{step.t}
{step.d}
))}
[ TEAM_2026 / 15+ HUMANS ]
{Array.from({ length: 12 }).map((_, i) => { const a = (i / 12) * Math.PI * 2; const x = 100 + Math.cos(a) * 90; const y = 100 + Math.sin(a) * 90; return ; })}
LAT 21.1702° N LNG 72.8311° E
); } // ===== Testimonials ===== const TESTIMONIALS = [ { text: 'Pixelpulse Infosolution built our mobile app from scratch, and the results exceeded our expectations. The app is fast, user-friendly, and scalable. Their attention to detail and understanding of user experience is outstanding.', name: 'Rahul Mehta', role: 'Founder, RetailHive', initials: 'RM', tag: 'PRODUCT BUILD', headline: 'Exceeded expectations.', meta: 'iOS + Android · Retail · 2025', }, { text: 'Working with Pixelpulse Infosolution was a game-changer for our business. Their team delivered a high-quality mobile application that perfectly matched our vision. Their professionalism, communication, and technical expertise truly set them apart.', name: 'Priya Sharma', role: 'CEO, OrbitFin', initials: 'PS', tag: 'PARTNERSHIP', headline: 'A real game-changer.', meta: 'Fintech · Cross-platform · 2024', }, { text: 'As a startup, we needed a reliable tech partner, and Pixelpulse Infosolution delivered exactly that. From idea validation to final deployment, they guided us at every step and helped us launch successfully.', name: 'Arjun Patel', role: 'Co-founder, Shiftly', initials: 'AP', tag: 'STARTUP MVP', headline: 'Shipped from idea to launch.', meta: 'Logistics · MVP · 2024', }, { text: 'The design team at Pixelpulse Infosolution created a stunning and intuitive UI/UX for our app. Our customers love the smooth experience, and it has significantly improved our engagement rates.', name: 'Neha Kapoor', role: 'Head of Product, BrightCart', initials: 'NK', tag: 'UI / UX', headline: 'Engagement +47%.', meta: 'E-commerce · Design · 2025', }, ]; function Testimonials() { return (
[ 05 / VOICES ]

Words from the
people who shipped with us.

Hover any card to flip it — every quote has a story behind it.

{TESTIMONIALS.map((t, i) => (
"
{t.text}
{t.initials}
{t.name}
{t.role}
★★★★★
[ {t.tag} ]
{t.headline}
{t.meta}
))}
); } // ===== Careers ===== const CAREERS = [ { title: 'Senior Flutter Developer', loc: 'Surat, India', type: 'Full-time', dept: 'Engineering' }, { title: 'iOS Engineer (Swift / SwiftUI)', loc: 'Surat / Remote', type: 'Full-time', dept: 'Engineering' }, { title: 'Android Engineer (Kotlin)', loc: 'Surat, India', type: 'Full-time', dept: 'Engineering' }, { title: 'Mobile UI/UX Designer', loc: 'Surat / Remote', type: 'Full-time', dept: 'Design' }, { title: 'QA Automation Engineer', loc: 'Surat, India', type: 'Full-time', dept: 'Quality' }, ]; function Careers() { return (
[ 06 / CAREERS ]

Build what's next
with us.

We're a tight crew of designers and engineers who care about craft. If you ship work you're proud of, we'd love to talk.

{CAREERS.map((c, i) => (
0{i + 1} —
{c.title}
{c.dept} · {c.loc}
{c.type}
))}
PIXELPULSE
); } // ===== Contact + Footer ===== function Contact() { const [vals, setVals] = useStateT({ name: '', email: '', company: '', message: '' }); const [sent, setSent] = useStateT(false); const onSubmit = (e) => { e.preventDefault(); setSent(true); setTimeout(() => { setSent(false); setVals({ name: '', email: '', company: '', message: '' }); }, 3500); }; const Field = ({ name, label, type = 'text', textarea = false }) => { const Tag = textarea ? 'textarea' : 'input'; return (
setVals({ ...vals, [name]: e.target.value })} />
); }; return (
[ 07 / CONTACT ]

Got an idea?
Let's build it.

Tell us what you're working on. We reply within 24 hours — usually with a few sharp questions and a timeline.

setVals({ ...vals, name: e.target.value })} required />
setVals({ ...vals, email: e.target.value })} required />
setVals({ ...vals, company: e.target.value })} />
[ Studio ]
4th Floor, Shop No. 406, Angel Business Center 1, Beside Alok Residency, Sudama Chowk, Mota Varachha, Surat, Gujarat 394101
[ Phone ]
[ Hours ]
Mon — Sat · 10:00 — 19:00 IST
[ Follow ]
); } function Footer() { const navBase = (typeof window !== 'undefined' && window.__navBase) || ''; return ( ); } Object.assign(window, { About, Testimonials, Careers, Contact, Footer });