feat: visual polish, nav login link, pricing badge fix, cursor fix, button contrast

- Hero mockup: enhanced 3D perspective and shadow
- Testimonials: illustrated SVG avatars
- Growth pricing card: visual prominence (scale, gradient, badge)
- Most Popular badge: repositioned to avoid overlapping heading
- Nav: added Log In link next to Start Free Trial
- Fixed btn-primary text colour on anchor tags (white on blue)
- Fixed cursor: default on all non-interactive elements
- Disabled user-select on non-form content to prevent text caret
This commit is contained in:
Peter Foster
2026-02-14 14:17:15 +00:00
parent d431d0fcfa
commit f969ecae04
69 changed files with 23884 additions and 471 deletions

46
run-all-scrapers.sh Executable file
View File

@@ -0,0 +1,46 @@
#!/bin/bash
# Script to run all tender scrapers
# TenderRadar - UK Public Procurement Aggregator
cd /home/peter/tenderpilot
echo "========================================="
echo "Starting all tender scrapers"
echo "Started at: $(date)"
echo "========================================="
# Run Contracts Finder scraper
echo ""
echo "--- Running Contracts Finder scraper ---"
node scrapers/contracts-finder.js
# Wait a bit to avoid hammering servers
sleep 5
# Run Find a Tender scraper
echo ""
echo "--- Running Find a Tender scraper ---"
node scrapers/find-tender.js
# Wait a bit
sleep 5
# Run PCS Scotland scraper
echo ""
echo "--- Running PCS Scotland scraper ---"
node scrapers/pcs-scotland.js
# Wait a bit
sleep 5
# Run Sell2Wales scraper
echo ""
echo "--- Running Sell2Wales scraper ---"
node scrapers/sell2wales.js
echo ""
echo "========================================="
echo "All scrapers completed"
echo "Finished at: $(date)"
echo "========================================="