/** * ======================================================================================== * @file layout.tsx - root next.js layout wrapper for the entire application * ======================================================================================== * @description * - injects devlink providers, global css cascade, and top-level ui components * - mounts global behavior controllers (e.g. links, panels) outside the dom tree * @see src/app/page.tsx, webflow/ */// Metadataimport type { Metadata } from "next";import { siteConfig } from "@/meta/config/site";import { versionText, versionLink, hashText, hashLink } from "@/meta/config/version";// Webflowimport { DevLinkProvider } from "@webflow/DevLinkProvider";import { Header } from "@webflow/interface/Header";import { Footer } from "@webflow/interface/Footer";import { Nav } from "@webflow/panels/Nav";import { Chat } from "@webflow/panels/Chat";import { Test } from "@webflow/panels/Test";// Navigationimport Panel from "@/modules/nav/Panel";import States from "@/modules/nav/states";// Controllersimport Panels from "@/core/controllers/panels";import Links from "@/core/controllers/links";// Widgetsimport Stats from "@/modules/stats/Stats";// Webflow stylesimport "@webflow/css/normalize.css";import "@webflow/css/fonts.css";import "@webflow/css/variables.css";import "@webflow/css/defaults.css";import "@webflow/css/tags.css";import "@webflow/css/classes.css";import "@webflow/css/global.css";// Overridesimport "@/app/custom.css";import "@/core/controllers/panels.css";import "@/modules/stage/Chat.css";// Route caching via Next.js ISR.export const revalidate = 2592000;// Metadataexport const metadata: Metadata = {  title: {    default: siteConfig.name,    template: `%s | ${siteConfig.name}`,  },  description: siteConfig.description,  openGraph: {    type: "website",    locale: "en_US",    url: siteConfig.url,    siteName: siteConfig.name,    images: [{ url: siteConfig.ogImage }],  },};// Renderexport default function RootLayout({  children,}: Readonly<{  children: React.ReactNode;}>) {  return (    <DevLinkProvider>      <html lang="en">        <body suppressHydrationWarning>          <script            suppressHydrationWarning            dangerouslySetInnerHTML={{              __html: `                try {                  const state = JSON.parse(localStorage.getItem('app-state') || '{}');                  // Panel widths                  if (state.panelWidths) {                    for (const [panel, width] of Object.entries(state.panelWidths)) {                      document.body.style.setProperty('--' + panel + '-width', width);                    }                  }                  // Initial styling                  let css = '';                  // Active links                  const currentPath = window.location.pathname;                  const activePath = currentPath === "/README.md" ? "/" : currentPath;                  css += '.nav__link[href="' + activePath + '"], .nav__link[href="' + activePath + '/"] { color: var(--text-active) !important; } ';                  // Folder states                  if (state.openFolders && state.openFolders.length > 0) {                    for (const key of state.openFolders) {                      css += '.nav__list[data-folder-key="' + key + '"] { height: auto !important; max-height: none !important; } ';                      css += '.nav__link:has(+ .nav__list[data-folder-key="' + key + '"]) .nav__icon { transform: rotate(90deg) !important; } ';                    }                  }                  if (css) {                    const style = document.createElement('style');                    style.id = 'injected-folder-states';                    style.textContent = css;                    document.head.appendChild(style);                  }                } catch (e) {}              `,            }}          />          <div id="Shell" className="shell">            <Header />            <div id="Stage" className="stage">              <Nav slot={<Panel />} />              <main id="Canvas" className="canvas">{children}</main>              <Test />              <Chat />            </div>            <Footer              versionText={versionText}              versionLink={versionLink}              hashText={hashText}              hashLink={hashLink}              statsSlot={<Stats />}            />          </div>          <States />          <Panels />          <Links />        </body>      </html>    </DevLinkProvider>  );}

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.