admin / Bid-Sentinel
publicBid Scrape and Tracking Application with AI Capability
Bid-Sentinel / bid-sentinel-v2 / frontend / index.html
775 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Bid Sentinel — UK Cyber Security Tender Platform</title> <script> // Apply the saved (or system) colour theme before first paint to avoid a flash. (function () { try { var t = localStorage.getItem("bs_theme"); if (!t) { t = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"; } if (t === "dark") document.documentElement.classList.add("dark"); } catch (e) {} })(); </script> </head> <body> <div id="root"></div> <script type="module" src="/src/main.jsx"></script> </body> </html> |