MyProjects component — placeholder

This block is a placeholder. It exists so the page is renderable and editable in Bloomreach before the real component ships.

  1. Replace the contents of components/MyProjects/MyProjects.tsx with a wrapper around the @pni MyProjects npm package (likely a client-only dynamic import with ssr: false, see components/MyFilesWrapper/MyFilesWrapper.tsx for the pattern).
  2. Verify and, if needed, update the per-breakpoint min-heights at the top of components/MyProjects/MyProjects.module.scss (currently $min-height-mobile: 750px / $min-height-desktop: 650px, the recommended values while this is still a placeholder) so they match the real component's rendered height at each breakpoint. If a new breakpoint becomes relevant, add another variable + its own @include mq($from: …) block. See components/Configurator/Configurator.module.scss for the same pattern; available breakpoint tokens (mobile-new, tablet-new, small-desktop-new, desktop-new, wide) are defined in styles/utilities/_mq-settings.scss.