PinSpec allows you to export your web page source code, which you can then build and deploy to hosting platforms like Netlify.
Download and install:
Node.js from nodejs.org (required to build the site)
Cursor (recommended, cursor.com) or VS Code (code.visualstudio.com)

In PinSpec: Menu (☰) → Export. Which downloads the source code as .zip file.

Unzip the downloaded bundle to a folder on your computer. Open Cursor/VS Code and click Open Project, then select the unzipped project folder.

Open the integrated terminal (Cursor/VS Code: Press `Ctrl+`` (backtick) or go to Terminal → New Terminal), then run these commands:
npm install
npm run build
This creates a dist/ folder containing the optimized, static site files ready for deployment.
Drag the build folder (dist/) into Netlify Drop to publish your site live.

Note: If you make further code changes, repeat step 4 to rebuild before redeploying.