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:
46
run-all-scrapers.sh
Executable file
46
run-all-scrapers.sh
Executable 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 "========================================="
|
||||
Reference in New Issue
Block a user