const DS1 = window.LakshayKumarDesignSystem_3ad00d; const { Button, Card, Tag, Icon, SectionHeading } = DS1; function Section({ id, tone = "bg", children, style }) { return (
{children}
); } function AuroraField() { const a = useParallax(0.05), b = useParallax(-0.04); return ( ); } function Hero() { const S = window.SITE; const portrait = useParallax(-0.05); return (
India — available worldwide

Hi, I'm Lakshay Kumar.

I build websites that grow businesses, make content that teaches people, and automate the work that shouldn't need a person. Four years of QA automation at HCLTech, on Cricket Australia and Coles.

{[["4+", "years in QA automation"], ["26.6K", "Instagram followers"], ["4", "client sites live"]].map(([v, l]) => (
{l}
))}
Automating what repeats
4 sites live
); } function Marquee() { const items = window.SITE.marquee; const row = [...items, ...items]; return ( ); } function About() { const cards = [ { icon: "badge-check", title: "4+ years experience", body: "QA automation at HCLTech since October 2021, on Australian client accounts." }, { icon: "layout-template", title: "WordPress developer", body: "Four live client sites, two paid and two volunteer, built and still supported." }, { icon: "sparkles", title: "AI creator", body: "26.6K followers on Instagram for practical AI, SEO and productivity content." }, { icon: "cpu", title: "Automation engineer", body: "Playwright, Selenium and API frameworks wired into Jenkins pipelines." } ]; return (

I started in retail support, watching Linux servers stay up. That turned into test automation, and test automation turned into a career: Playwright and Selenium frameworks for platforms that a lot of people use at the same time.

Somewhere along the way I started building websites for small businesses, some paid, some not. And then I started explaining the tools I use to anyone who'd watch.

The three fit together better than they sound. Testing taught me what breaks. Building taught me what clients actually need. Content taught me to explain both in under sixty seconds.

{cards.map((c, i) => (
{c.title}

{c.body}

))}
); } function Services() { return (
{window.SITE.services.map((s, i) => (
{s.title}

{s.body}

    {s.points.map((p) => (
  • {p}
  • ))}
))}
); } Object.assign(window, { Section, Hero, Marquee, About, Services });