'use client'import React from 'react'import Select, {  components,  MultiValueRemoveProps,  ClearIndicatorProps,  OnChangeValue,  ActionMeta,} from 'react-select'const TagsMultiValueRemove = (  props: MultiValueRemoveProps<OptionType, true>) => (  <components.MultiValueRemove {...props}>    <svg      width="100%"      height="100%"      fill="currentColor"      xmlns="http://www.w3.org/2000/svg"      viewBox="0 0 384 512"    >      <path d="M345 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-119 119L73 103c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l119 119L39 375c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l119-119L311 409c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-119-119L345 137z" />    </svg>  </components.MultiValueRemove>)const TagsClearIndicator = (props: ClearIndicatorProps<OptionType, true>) => (  <components.ClearIndicator {...props}>    <svg      width="100%"      height="100%"      fill="currentColor"      xmlns="http://www.w3.org/2000/svg"      viewBox="0 0 384 512"    >      <path d="M345 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-119 119L73 103c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l119 119L39 375c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l119-119L311 409c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-119-119L345 137z" />    </svg>  </components.ClearIndicator>)type TagSelectorProps = {  options: OptionType[]  value: OptionType[]  onChange: (    _newValue: OnChangeValue<OptionType, true>,    _actionMeta: ActionMeta<OptionType>  ) => void}export type OptionType = {  value: number  label: string}export default function TagSelector(props: TagSelectorProps) {  const { options, value, onChange } = props  return (    <Select<OptionType, true>      //menuIsOpen={true}      isMulti      unstyled      placeholder=""      noOptionsMessage={() => 'No matching tags.'}      options={options}      value={value}      onChange={onChange}      components={{        MultiValueRemove: TagsMultiValueRemove,        ClearIndicator: TagsClearIndicator,        IndicatorSeparator: () => null,        DropdownIndicator: () => null,      }}      //classNamePrefix="tags"      classNames={{        container: () => 'tags__container',        control: () => 'tags__control',        valueContainer: () => 'tags__value-container',        indicatorsContainer: () => 'tags__indicators',        menu: () => 'tags__menu',        menuList: () => 'tags__menu-list',        menuPortal: () => 'tags__menu-portal',        group: () => 'tags__group',        groupHeading: () => 'tags__group-heading',        multiValue: () => 'tags__multi-value',        multiValueLabel: () => 'tags__multi-value__label',        multiValueRemove: () => 'tags__multi-value__remove',        placeholder: () => 'tags__placeholder',        singleValue: () => 'tags__single-value',        input: () => 'tags__input',        clearIndicator: () => 'tags__indicator tags__clear-indicator',        dropdownIndicator: () => 'tags__indicator tags__dropdown-indicator',        indicatorSeparator: () => 'tags__indicator-separator',        loadingIndicator: () => 'tags__loading-indicator',        loadingMessage: () => 'tags__loading-message',        noOptionsMessage: () => 'tags__no-options-message',        option: ({ isFocused, isSelected, isDisabled }) =>          'tags__option' +          (isFocused ? ' tags__option--is-focused' : '') +          (isSelected ? ' tags__option--is-selected' : '') +          (isDisabled ? ' tags__option--is-disabled' : ''),      }}      styles={{        control: (base) => ({          ...base,          minHeight: '2.5em',        }),        menuList: (base) => ({          ...base,          maxHeight: '9.3em',        }),      }}    />  )}

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.