// pages.jsx — Services, Work, About, Careers, Contact for Harjog Solutions const SERVICES = [ { slug: 'brand-identity', num: '01', t: 'Brand Identity', d: 'Logos, wordmarks, brand guidelines, naming sprints. The visual language that sets a business apart on day one and still works five years in.', tags: ['Logo', 'Naming', 'Guidelines'] }, { slug: 'packaging-print', num: '02', t: 'Packaging & Print', d: 'Packaging, signage, brochures, hoardings, vehicle wraps. Everything that lives offline — produced and proofed in-house.', tags: ['Packaging', 'Print', 'Outdoor'] }, { slug: 'real-estate', num: '03', t: 'Real Estate Marketing', d: 'Pre-launch teasers, site activation, broker collateral and lead funnels for builders and townships across India.', tags: ['Builders', 'Brokers', 'Funnels'] }, { slug: 'political', num: '04', t: 'Political Campaigns', d: 'Candidate creative, door-to-door collateral, IVR, voter outreach and on-ground field ops for state and local elections.', tags: ['Candidates', 'IVR', 'Field Ops'] }, { slug: 'performance', num: '05', t: 'Performance Marketing', d: 'Meta, Google Ads, YouTube and programmatic — engineered to ship qualified leads at a known cost.', tags: ['Meta', 'Google', 'YouTube'] }, { slug: 'content-video', num: '06', t: 'Content & Production', d: 'Reels, drone footage, brand films, music videos and photography — produced by our in-house creative team, turned around fast.', tags: ['Reels', 'Films', 'Photo'] }, { slug: 'automation', num: '07', t: 'Marketing Automation', d: 'WhatsApp, email, CRM and lead-routing workflows. Nurture every lead like it’s your only one, without the headcount.', tags: ['WhatsApp', 'CRM', 'Workflows'] }, { slug: 'web-seo', num: '08', t: 'Web & SEO', d: 'Marketing sites, landing pages and on-page SEO. Built to load fast on a 4G phone in a tier-2 town.', tags: ['Sites', 'SEO', 'Speed'] }, ]; function ServicesPage({ setRoute }) { return (

Eight services.
One studio.

We resist the urge to outsource. Branding, marketing, automation and production are all run by senior people in our Ludhiana studio — so the people you brief are the people who execute.

{SERVICES.map((s, i) => ( setRoute('service/' + s.slug)}>

{s.t.split('').map((ch, j) => ( {ch === ' ' ? '\u00a0' : ch} {ch === ' ' ? '\u00a0' : ch} ))}

))}
); } // =========== Work index page ============ const ALL_WORK = [ { slug: 'township-launch', image: 'https://images.unsplash.com/photo-WQ42ypHazNo?w=1200&q=80&auto=format&fit=crop', cat: 'Real Estate', date: '2025–26', title: 'Ashok Malhotra Group — Digital & Lead Gen', blurb: 'Managing social media, performance marketing and lead generation for premier Ludhiana real estate properties. Driving site visits and bookings for internal sales teams.', glyph: 'A', tags: ['Real Estate', 'Performance', 'Social Media'], }, { slug: 'mla-campaign', image: 'https://images.unsplash.com/photo-AXGOhRx0Sko?w=1200&q=80&auto=format&fit=crop', cat: 'Political', date: '2025', title: 'Vidhan Sabha Campaign — Punjab', blurb: 'Full creative and outreach engine for a sitting MLA. 4.2L verified voter touchpoints across booths, IVR, WhatsApp and on-ground field collateral.', glyph: 'V', tags: ['Political', 'Social Media'], }, { cat: 'Social Media', date: '2023–24', title: 'Socializar — Global Social Campaigns', blurb: 'Led social media campaigns for brands across London, Australia, Canada, USA, Dubai and Thailand. Content creation, influencer marketing and community management.', glyph: 'S', tags: ['Social Media', 'Performance'], }, { cat: 'Film & Production', date: '2019', title: 'Bollywood & Punjabi Film Promos', blurb: 'Edited promos for Bala, Nikka Zaildar 3, Jabaria Jodi, Dream Girl, Doorbeen, Surkhi Bindi, Appa Ani Bappa and Chai Mera Put for major Bollywood and Punjabi productions.', glyph: 'B', tags: ['Film & Production'], }, { cat: 'Film & Production', date: '2019', title: 'Mitti Da Bawa — Punjabi Feature Film', blurb: 'Movie trailer, dialogue promos, song videos and complete graphics work for the 2019 Punjabi feature film.', glyph: 'M', tags: ['Film & Production'], }, { cat: 'Corporate Video', date: '2019–20', title: 'MCI India — Corporate Films & Auto Expo', blurb: 'Corporate promos, lyrical videos, app demo videos and Mahindra\'s pitch video for Auto Expo 2020. Produced at The Video Wand, New Delhi.', glyph: 'C', tags: ['Corporate Video', 'Film & Production'], }, { cat: 'Product Campaign', date: '2020–22', title: 'D2C Product Campaigns — Multi-Brand', blurb: 'Video and creative campaigns for Lahori Jeera, Skout Organics, Calming Dog, Kuddly, QuitStix, Chef V, Whom and Drink Dry.', glyph: 'P', tags: ['Product Campaign', 'Film & Production'], }, { cat: 'App & Tech', date: '2021', title: 'HealthOptim — AI App Launch Video', blurb: 'Full intro and promotional video for HealthOptim, an artificial intelligence-based health and wellness platform.', glyph: 'H', tags: ['Corporate Video', 'Film & Production'], }, { cat: 'Real Estate', date: '2020–24', title: 'Real Estate Creative — Multi-Project', blurb: 'Brand and video work for M3M, Omaxe, Urbana, Sahu City, Broadway, County 7, Corner Walk, Exclusiverentals.ca, IVY County, Amy Serfass, Cleo and Resurge.', glyph: 'R', tags: ['Real Estate', 'Film & Production'], }, { cat: 'Music Video', date: '2018–22', title: 'Music Video Direction & Editing', blurb: 'Directed and edited music videos for Tere Hasse (Pritam x Binner x Sunny), Brave Gabru (Gavvy Gora), Jazbaat (Rukpal Grewal), Reality by Ansh and many more.', glyph: 'V', tags: ['Film & Production'], }, ]; function WorkPage({ setRoute }) { const [filter, setFilter] = React.useState('All'); const filters = ['All', 'Real Estate', 'Political', 'Social Media', 'Film & Production', 'Performance', 'Corporate Video']; const shown = filter === 'All' ? ALL_WORK : ALL_WORK.filter(w => w.tags.includes(filter) || w.cat === filter); return (

10 years of
real work.

From Bollywood film promos and Punjabi music videos to real estate launches, political campaigns and global social media — built by one person, one studio.

{filters.map(f => ( ))}
{shown.map((w, i) => ( w.slug ? setRoute('case/' + w.slug) : null} style={{ cursor: w.slug ? 'pointer' : 'default' }}> {w.image ? ( {w.title} ) : (
{w.glyph} {w.cat}
)}
{w.cat} {w.date}

{w.title}

{w.blurb}

{w.slug && (
Read case study
)}
))}
); } // =========== About page ============ const EXPERTISE = [ { t: 'Video Editing' }, { t: 'Motion Design' }, { t: 'Social Media Strategy' }, { t: 'Performance Marketing' }, { t: 'Lead Generation' }, { t: 'Photography' }, { t: 'Videography' }, ]; function AboutPage({ setRoute }) { return (
{/* Manifesto */}

Marketing should be accountable. We pitch the numbers we expect to hit, we track them every week, and we don’t hide behind ‘awareness’ when leads don’t show up.

Senior-only on calls

You speak directly to Satnam — the person doing the work, not an account manager.

Built in-house

Creative, video, automation and ads — all built under one roof in Ludhiana.

Truth-telling

We tell you when a campaign won’t work, even if we’ve already been paid for it.

Local roots

We speak the language, know the Punjab market, and produce work that actually lands.

{/* Stats */}
+
Years in practice
+
Projects delivered
Countries — social media clients
Largest team led
{/* Founder note */}
SJ Satnam Singh · Ludhiana

“I started in video editing — cutting Bollywood promos in Mumbai, corporate films in Delhi, music videos in Punjab. Then I moved into social media and marketing, ran my own agency Socializar, and eventually built Harjog Solutions to bring all of it under one roof. Ten years on, the work is still the only thing that matters.”

Satnam Singh · Founder & Creative Director

{[ 'Ashok Malhotra Group — Creative & Social Media Head (Dec 2024–Present)', 'Socializar — Social Media Agency Owner (2023–24)', 'Praper Media — Team Lead, Video Production (2022–23)', 'Get Me Rank — Senior Designer (2020–22)', 'The Video Wand — Senior Video Editor, MCI India (2019–20)', 'Promo Editor, Bollywood & Punjabi Productions (2019)', 'Westweb Technologies — Video Editor & Designer (2016–19)', 'Freelancer — Video, Animation, Social Media (2014–16)', ].map((line, i) => (
))}
{/* Expertise */}

Core expertise

{EXPERTISE.map((e, i) => (

{e.t.split('').map((ch, j) => ( {ch === ' ' ? '\u00a0' : ch} {ch === ' ' ? '\u00a0' : ch} ))}

))}
); } // =========== Careers page ============ const ROLES = [ { dept: 'Creative', t: 'Senior Brand Designer', loc: 'Ludhiana (on-site)', type: 'Full-time' }, { dept: 'Performance', t: 'Performance Marketing Lead', loc: 'Ludhiana / Remote', type: 'Full-time' }, { dept: 'Production', t: 'Video Editor — Reels & Ads', loc: 'Ludhiana (on-site)', type: 'Full-time' }, { dept: 'Automation', t: 'CRM & Automation Engineer', loc: 'Remote (India)', type: 'Full-time' }, { dept: 'Operations', t: 'Client Services Manager', loc: 'Ludhiana', type: 'Full-time' }, ]; function CareersPage({ setRoute }) { return (

Build the studio
with us.

We hire slowly and rarely. When we do, we look for people who’d rather make real work for real businesses than chase awards at a bigger agency in Delhi or Mumbai.

{ROLES.map((r, i) => ( setRoute('contact')}>
{String(i + 1).padStart(2, '0')}

{r.t}

{r.dept} · {r.loc} · {r.type}

Apply
))}

Don't see your role?{' '} setRoute('contact')} style={{ color: 'var(--accent)', cursor: 'pointer', borderBottom: '1px solid currentColor' }}> Write to us anyway {' '}— we keep great people in mind.

); } // =========== Contact page ============ function ContactPage() { const [form, setForm] = React.useState({ name: '', email: '', phone: '', company: '', service: 'branding', budget: '', timeline: '', message: '' }); const [submitted, setSubmitted] = React.useState(false); const [errors, setErrors] = React.useState({}); const budgets = ['< ₹1L', '₹1–5L', '₹5–15L', '₹15L+', 'Not sure yet']; const update = (k) => (e) => setForm({ ...form, [k]: e.target.value }); const validate = () => { const errs = {}; if (!form.name.trim()) errs.name = 'Required'; if (!form.email.includes('@')) errs.email = 'Need a valid email'; if (!form.message.trim() || form.message.length < 12) errs.message = 'Tell us a bit more'; return errs; }; const submit = (e) => { e.preventDefault(); const errs = validate(); setErrors(errs); if (Object.keys(errs).length === 0) { setSubmitted(true); } }; if (submitted) { return (

Thanks, {form.name.split(' ')[0]}.
We'll reply within a day.

Your message is in our queue — you’ll hear from Satnam directly. In the meantime, here’s a few useful things.

{[ { t: 'Recent case studies', d: 'Township launches, brand relaunches, political campaigns and Bollywood film promos.' }, { t: 'Pricing & retainers', d: 'How we scope brand sprints, monthly retainers and per-seat political campaigns.' }, { t: 'WhatsApp the studio', d: 'For active clients and quick questions — fastest way to reach us most days.' }, ].map((c, i) => (

{c.t}

{c.d}

Open
))}
); } return (

Tell us about
your project.

The more you share, the better our first reply. If you’d rather just say hi, that works too — keep it short.

{budgets.map(b => ( ))}