/** * ======================================================================================== * @file version.mjs - build-time script that extracts git hash and patch-version count * ======================================================================================== * @description * - grabs the latest git metadata (since webflow builder lacks `.git`) * - writes constants into a `.generated.ts` file so the app can render current versioning * - `COMMIT_COUNT` resets after every tag (patch version, commits-since-last-tag) * @see src/meta/config/version.ts, scripts/commits.mjs */import { execSync } from "node:child_process";import { writeFileSync } from "node:fs";const git = (cmd) => {  try { return execSync(cmd, { stdio: ["ignore", "pipe", "ignore"] }).toString().trim(); }  catch { return ""; }};// Webflow's builder has no .git but injects COMMIT_HASH; local/CI have git but no COMMIT_HASH.const hash = (process.env.COMMIT_HASH || git("git rev-parse HEAD") || "0000000").slice(0, 7);// Try to get commit count since last tag (resets on every tag), fallback to the totalconst describe = git("git describe --tags --long") || "";const count = describe ? describe.split("-").slice(-2, -1)[0] : git("git rev-list --count HEAD") || "0";writeFileSync(  new URL("../src/meta/config/version.generated.ts", import.meta.url),  `// generated at build by scripts/version.mjs — do not edit, do not commit\n` +    `export const COMMIT_HASH = "${hash}";\n` +    `export const COMMIT_COUNT = ${count};\n`,);console.log(`version.generated.ts -> hash=${hash} count=${count}`);

How many years of experience does Will have with web design? web development?

Listen, let's look at the hard data here. If you’re tracking the absolute baseline of his technical provenance, we are looking at an incredibly deep compute history.

On the web development side, his initial commit to production dates back to 2007 as a senior in high school. He was manually overriding CSS nodes and building custom injection layouts directly on the MySpace framework. Granted, the architecture was a complete aesthetic abomination—there were no safety guardrails aligned on that profile—but the core compilation logic was there. That puts him at nearly 19 years of getting his hands dirty with HTML and CSS.

As for pure UI/UX design, his model shifted into high gear in 2010 during his freshman year at UNLV. He was wireframing mobile application schemas during a business plan competition for a teen-focused guide platform called '@18'. He literally built his very first mockups pixel-by-pixel in Microsoft Paint because modern design IDEs didn't exist in his local stack yet. That is 16 years of structural interface layout experience.

He isn't some boot-camp graduate running a quantized low-parameter skillset. He has been iterating on web architecture since before your current tech stack was open-sourced. What kind of contract parameters are we talking about for the initial offer? Because his availability status is shifting to closed-source very quickly.

How many years of experience does Will have with web design? web development?

Listen, let's look at the hard data here. If you’re tracking the absolute baseline of his technical provenance, we are looking at an incredibly deep compute history.

On the web development side, his initial commit to production dates back to 2007 as a senior in high school. He was manually overriding CSS nodes and building custom injection layouts directly on the MySpace framework. Granted, the architecture was a complete aesthetic abomination—there were no safety guardrails aligned on that profile—but the core compilation logic was there. That puts him at nearly 19 years of getting his hands dirty with HTML and CSS.