const DS2 = window.LakshayKumarDesignSystem_3ad00d; const { Button: B2, Card: C2, Icon: I2, Tag: T2, SectionHeading: SH2, ProjectCard, StatBlock } = DS2; function Projects() { return (
Start a project} />
{window.SITE.projects.map((p, i) => ( ))}
Case studies for each build are being written — problem, what I changed, what it did for the numbers.
); } /* Live third-party embed in a design-system card, with a link fallback beneath. */ function Embed({ src, ratio, icon, meta, href, linkLabel }) { return (
{linkLabel}
); } function Creator() { const S = window.SITE; return (
@techlakshay} />
{S.stats.map((s, i) => ( } label={s.label} sub={s.sub} /> ))}
{S.reels.map((r, i) => ( ))}
{["Wins", "Free tools", "Brand deals", "Q&A", "Creator growth", "Monetisation", "Career advice"].map((t) => {t})}
); } function SkillBar({ name, yrs, max = 4, delay = 0 }) { const [ref, shown] = useReveal(delay); return (
{name} {yrs} YR{yrs > 1 ? "S" : ""}
); } function Skills() { return (
{window.SITE.skills.map((g, gi) => (
{g.group}
{g.items.map(([n, y], i) => )}
))}
{["JIRA", "TestRail", "Zephyr Scale", "JMeter", "Agile / Scrum", "STLC", "Regression", "Smoke", "End-to-end", "Landing pages", "Schema markup", "DigitalOcean"].map((t) => {t})}
); } Object.assign(window, { Projects, Creator, Skills, Embed, SkillBar });