File size: 72,972 Bytes
97ee7cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 | import { useState, useEffect, useRef, createContext, useContext, type ReactElement, type ReactNode } from 'react';
import type { UserResource } from '@clerk/types';
import * as Sentry from '@sentry/react';
import { motion } from 'motion/react';
import {
Globe, ShieldAlert, Zap, Terminal, Database,
Send, MessageCircle, Mail, MessageSquare, ChevronDown,
ArrowRight, Check, Lock, Server, Cpu, Layers,
Bell, Brain, Key, Plug, PanelTop, ExternalLink,
BarChart3, Clock, Radio, Ship, Plane, Flame,
Cable, Wifi, MapPin, TrendingUp,
Filter, Lightbulb, SlidersHorizontal, Telescope,
LineChart, Search, Shield, Building2,
Landmark, Fuel
} from 'lucide-react';
import { t } from './i18n';
import { ensureClerk, tryResumeCheckoutFromUrl } from './services/checkout';
import { scheduleClerkLoad, subscribeClerkLoaded } from './services/clerk';
import { startClerkUserStateSync, type ClerkUserState } from './services/clerk-user-state';
import { hasLiveClientSession } from './services/clerk-session';
import { PricingSection } from './components/PricingSection';
import { SoonBadge } from './components/SoonBadge';
import { Logo } from './components/Logo';
import { WiredBadge } from './components/WiredBadge';
import { Footer } from './components/Footer';
import {
DASHBOARD_SCREENSHOT_JPG,
DASHBOARD_SCREENSHOT_AVIF_SRCSET,
DASHBOARD_SCREENSHOT_WEBP_SRCSET,
} from './assets/dashboard-screenshot';
import { ensureTurnstileScript } from './turnstile';
import wiredLogo from './assets/wired-logo.svg';
import {
DASHBOARD_EMBED_PREVIEW_URL,
DASHBOARD_PATH,
DASHBOARD_URL,
} from './routes';
const API_BASE = 'https://api.worldmonitor.app/api';
const TURNSTILE_SITE_KEY = '0x4AAAAAACnaYgHIyxclu8Tj';
declare global {
interface Window {
turnstile?: {
render: (container: string | HTMLElement, opts: Record<string, unknown>) => string;
getResponse: (widgetOrId?: string | HTMLElement) => string | undefined;
reset: (widgetOrId?: string | HTMLElement) => void;
};
}
}
export function renderTurnstileWidgets(): number {
if (!window.turnstile) return 0;
let count = 0;
document.querySelectorAll<HTMLElement>('.cf-turnstile:not([data-rendered])').forEach(el => {
const widgetId = window.turnstile!.render(el, {
sitekey: TURNSTILE_SITE_KEY,
size: 'flexible',
callback: (token: string) => { el.dataset.token = token; },
'expired-callback': () => { delete el.dataset.token; },
'error-callback': () => { delete el.dataset.token; },
});
el.dataset.rendered = 'true';
el.dataset.widgetId = String(widgetId);
count++;
});
return count;
}
function getRefCode(): string | undefined {
const params = new URLSearchParams(window.location.search);
return params.get('ref') || undefined;
}
/**
* Carry the current visit's referral code into a dashboard-target URL.
* Ensures `/pro?ref=X` β hero "try the dashboard" click propagates the
* code to the dashboard, where captureReferralFromUrl() in App.ts
* persists it to localStorage for a later in-dashboard upgrade. Writes
* with the `wm_referral=` name because the dashboard uses that going
* forward; the /pro page itself still accepts `ref=` for inbound
* compatibility with existing share links.
*
* Validates against the same charset as the dashboard's `isValidCode`
* (alphanumeric + `-` + `_`, β€64 chars) so a hostile `/pro?ref=` value
* doesn't briefly appear in the dashboard URL on arrival before the
* dashboard-side validator strips it. Invalid codes return the URL
* unchanged so the link still works without attribution.
*/
const REFERRAL_CODE_REGEX = /^[a-zA-Z0-9_-]+$/;
function isValidRefCode(code: string): boolean {
return code.length > 0 && code.length <= 64 && REFERRAL_CODE_REGEX.test(code);
}
function appendRefToUrl(url: string, refCode: string | undefined): string {
if (!refCode || !isValidRefCode(refCode)) return url;
const sep = url.includes('?') ? '&' : '?';
return `${url}${sep}wm_referral=${encodeURIComponent(refCode)}`;
}
function openSignIn(): void {
ensureClerk().then(c => c.openSignIn()).catch((err) => {
console.error('[auth] Failed to open sign in:', err);
Sentry.captureException(err, { tags: { surface: 'pro-marketing', action: 'open-sign-in' } });
});
}
/**
* Lightweight /pro auth state. The live __session JWT gives us an immediate
* signed-in signal without loading Clerk; the real Clerk user is filled in only
* after the SDK is loaded from an auth action or an idle signed-in load.
*
* Used by the Navbar to swap the SIGN IN button for Clerk's UserButton avatar
* once the visitor is authenticated, and by the Hero to hide its redundant
* SIGN IN CTA. Single source of truth for "is the /pro visitor signed in".
*/
function useClerkUser(): ClerkUserState {
const [state, setState] = useState<ClerkUserState>(() => ({
user: null,
isLoaded: true,
signedIn: hasLiveClientSession(),
}));
useEffect(() => {
return startClerkUserStateSync(setState, {
hasLiveClientSession,
subscribeClerkLoaded,
scheduleClerkLoad,
onLoadError(err) {
console.error('[auth] Failed to load Clerk for nav auth state:', err);
Sentry.captureException(err, { tags: { surface: 'pro-marketing', action: 'load-clerk-for-nav' } });
setState({ user: null, isLoaded: true, signedIn: false });
},
});
}, []);
return state;
}
/**
* Entitlement state shared across /pro β `isPro: true` when the signed-in
* visitor has an active Pro entitlement, either via Clerk pro role OR a
* Convex Dodo subscription (tier >= 1). The provider below performs
* exactly one /api/me/entitlement fetch per page load and makes the
* result available via useProEntitlement(); Navbar and Hero (and any
* future caller) share a single source of truth, so the nav and hero
* can't disagree on transient failures.
*
* Defaults to `{ isPro: false, isChecked: false }` for consumers that
* render without a provider (e.g. tests) β matches the closed-by-default
* stance for unpaid visitors.
*/
type ProEntitlementState = { isPro: boolean; isChecked: boolean };
const ProEntitlementContext = createContext<ProEntitlementState>({ isPro: false, isChecked: false });
function ProEntitlementProvider({ children }: { children: ReactNode }): ReactElement {
const { user, signedIn } = useClerkUser();
const userId = user?.id ?? null;
const [state, setState] = useState<ProEntitlementState>({ isPro: false, isChecked: false });
useEffect(() => {
if (!signedIn) {
setState({ isPro: false, isChecked: true });
return;
}
if (!userId) {
setState({ isPro: false, isChecked: false });
return;
}
let cancelled = false;
(async () => {
try {
const clerk = await ensureClerk();
// Clerk can expose `user` before its session-token endpoint is
// ready; a first null return is a known transient, not a final
// "no token." Retry once after a 2s gap β same pattern as
// services/checkout.ts:getAuthToken. Without the retry, a real
// Pro user hitting /pro on a cold Clerk load gets a permanent
// isPro=false for the whole session.
let token = await clerk.session?.getToken().catch(() => null);
if (!token) {
await new Promise((r) => setTimeout(r, 2000));
token = await clerk.session?.getToken().catch(() => null);
}
if (!token) {
if (!cancelled) setState({ isPro: false, isChecked: true });
return;
}
const resp = await fetch(`${API_BASE}/me/entitlement`, {
headers: { Authorization: `Bearer ${token}` },
signal: AbortSignal.timeout(8_000),
});
if (!resp.ok) {
if (!cancelled) setState({ isPro: false, isChecked: true });
return;
}
const data = await resp.json() as { isPro?: boolean };
if (!cancelled) setState({ isPro: data.isPro === true, isChecked: true });
} catch (err) {
console.error('[auth] Failed to check pro entitlement:', err);
Sentry.captureException(err, { tags: { surface: 'pro-marketing', action: 'check-entitlement' } });
if (!cancelled) setState({ isPro: false, isChecked: true });
}
})();
return () => { cancelled = true; };
}, [signedIn, userId]);
return <ProEntitlementContext.Provider value={state}>{children}</ProEntitlementContext.Provider>;
}
function useProEntitlement(): ProEntitlementState {
return useContext(ProEntitlementContext);
}
/**
* Mounts Clerk's native UserButton (avatar + dropdown with profile + sign
* out) into a DOM node. Using Clerk's built-in widget avoids reimplementing
* a signed-in UI from scratch and inherits theming from the existing
* clerk.load() appearance options in services/checkout.ts.
*/
function ClerkUserButton({ user }: { user: UserResource | null }): ReactElement {
const ref = useRef<HTMLDivElement | null>(null);
useEffect(() => {
if (!user) return;
if (!ref.current) return;
const el = ref.current;
let unmounted = false;
ensureClerk()
.then((clerk) => {
if (unmounted || !el) return;
clerk.mountUserButton(el, {
afterSignOutUrl: 'https://www.worldmonitor.app/pro',
});
})
.catch((err) => {
console.error('[auth] Failed to mount user button:', err);
Sentry.captureException(err, { tags: { surface: 'pro-marketing', action: 'mount-user-button' } });
});
return () => {
unmounted = true;
ensureClerk().then((clerk) => {
if (el) clerk.unmountUserButton(el);
}).catch(() => { /* mount path already failed */ });
};
}, [user]);
return (
<div ref={ref} className="flex h-8 w-8 items-center justify-center">
{!user && (
<span
className="block h-8 w-8 rounded-full border border-wm-border bg-wm-card shadow-[inset_0_0_0_1px_rgba(255,255,255,0.04)]"
aria-hidden="true"
/>
)}
</div>
);
}
const SlackIcon = () => (
<svg viewBox="0 0 24 24" className="w-5 h-5" fill="currentColor" aria-hidden="true">
<path d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"/>
</svg>
);
/* βββ 0. Navbar βββ */
const Navbar = () => {
const { user, isLoaded, signedIn } = useClerkUser();
const { isPro, isChecked } = useProEntitlement();
// Show "Go to Dashboard" instead of "Upgrade to Pro" once we confirm
// the visitor is already a paying customer. Until the entitlement
// check completes we keep the upgrade CTA in place β a signed-in
// free user would see a one-frame flash otherwise, which is less
// annoying than showing "Go to Dashboard" for half a second to a
// visitor who hasn't paid.
const showGoToDashboard = isLoaded && signedIn && !!user && isChecked && isPro;
return (
<nav className="fixed top-0 left-0 right-0 z-50 glass-panel border-b-0 border-x-0 rounded-none" aria-label="Main navigation">
<div className="max-w-7xl mx-auto px-6 h-16 flex items-center justify-between">
<Logo />
<div className="hidden md:flex items-center gap-8 text-sm font-mono text-wm-muted">
<a href="#tiers" className="hover:text-wm-text transition-colors">{t('nav.free')}</a>
<a href="#pro" className="hover:text-wm-green transition-colors">{t('nav.pro')}</a>
<a href="#api" className="hover:text-wm-text transition-colors">{t('nav.api')}</a>
<a href="#enterprise" className="hover:text-wm-text transition-colors">{t('nav.enterprise')}</a>
</div>
<div className="flex items-center gap-2">
{isLoaded && (signedIn
? <ClerkUserButton user={user} />
: (
<button
type="button"
onClick={openSignIn}
className="border border-wm-border text-wm-text px-4 py-2 rounded-sm font-mono text-xs uppercase tracking-wider font-bold hover:border-wm-text transition-colors"
>
{t('nav.signIn')}
</button>
))}
{showGoToDashboard ? (
<a
href={DASHBOARD_URL}
className="bg-wm-green text-wm-bg px-4 py-2 rounded-sm font-mono text-xs uppercase tracking-wider font-bold hover:bg-green-400 transition-colors inline-flex items-center gap-1.5"
>
{t('nav.goToDashboard')} <ArrowRight className="w-3 h-3" aria-hidden="true" />
</a>
) : (
<a href="#pricing" className="bg-wm-green text-wm-bg px-4 py-2 rounded-sm font-mono text-xs uppercase tracking-wider font-bold hover:bg-green-400 transition-colors">
{t('nav.upgradeToPro')}
</a>
)}
</div>
</div>
</nav>
);
};
/* βββ 1. Hero β Less noise, more signal βββ */
const SignalBars = () => {
const total = 60;
const center = total / 2;
const signalRadius = 8;
const jitter = (index: number, salt: number) => {
const x = Math.sin(index * 12.9898 + salt * 78.233) * 43758.5453;
return x - Math.floor(x);
};
return (
<div className="relative my-4 md:my-8 -mx-6">
<div className="absolute inset-0 flex items-center justify-center pointer-events-none">
<div className="w-64 h-40 md:w-96 md:h-56 bg-wm-green/8 rounded-full blur-[80px]" />
</div>
<div className="flex items-end justify-center gap-[3px] md:gap-1 h-28 md:h-44 relative px-4" aria-hidden="true">
{Array.from({ length: total }).map((_, i) => {
const distFromCenter = Math.abs(i - center);
const isSignal = distFromCenter <= signalRadius;
const signalIntensity = isSignal ? 1 - distFromCenter / signalRadius : 0;
const peakHeight = 60 + signalIntensity * 110;
const noiseBase = Math.max(8, 35 - distFromCenter * 0.8);
const barHeight = isSignal ? peakHeight : noiseBase;
const initialScale = isSignal ? 0.3 : 0.5;
const scaleY = isSignal
? [0.5, 1, 0.65, 0.9]
: [1, 0.3, 0.7, 0.15, 0.5];
return (
<div
key={i}
className="flex flex-1 max-w-2 md:max-w-3 items-end"
style={{ height: `${barHeight}px` }}
>
<motion.div
className={`w-full rounded-sm ${isSignal ? 'bg-wm-green' : 'bg-wm-muted/20'}`}
style={{
height: '100%',
transformOrigin: 'bottom',
...(isSignal
? { boxShadow: `0 0 ${6 + signalIntensity * 12}px rgba(74,222,128,${signalIntensity * 0.5})` }
: null),
}}
initial={{ scaleY: initialScale, opacity: isSignal ? 0.4 : 0.08 }}
animate={isSignal
? {
scaleY,
opacity: [0.6 + signalIntensity * 0.3, 1, 0.75 + signalIntensity * 0.2, 0.95],
}
: {
scaleY,
opacity: [0.2, 0.06, 0.15, 0.04, 0.12],
}
}
transition={{
duration: isSignal ? 2.5 + signalIntensity * 0.5 : 1 + jitter(i, 1) * 0.6,
repeat: Infinity,
repeatType: 'reverse',
delay: isSignal ? distFromCenter * 0.07 : jitter(i, 2) * 0.6,
ease: 'easeInOut',
}}
/>
</div>
);
})}
</div>
</div>
);
};
const Hero = () => {
const { user, isLoaded, signedIn } = useClerkUser();
const { isPro, isChecked } = useProEntitlement();
// Showing "Sign In" to an already-signed-in user wastes a CTA slot.
// Hide it once auth state confirms; falls back to just the "Choose Plan"
// CTA which is the relevant action for returning users anyway.
const showSignIn = isLoaded && !signedIn;
// Swap "Choose Plan" for "Go to Dashboard" once we confirm the visitor
// is already Pro β same reasoning as the nav swap, and also removes
// the #pricing anchor jump which is actively misleading for a paying
// customer.
const showGoToDashboard = isLoaded && signedIn && !!user && isChecked && isPro;
return (
<section className="pt-28 pb-12 px-6 relative overflow-hidden">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_20%,rgba(74,222,128,0.08)_0%,transparent_50%)] pointer-events-none" />
<div className="max-w-4xl mx-auto text-center relative z-10">
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6 }}
>
<div className="mb-4">
<WiredBadge />
</div>
<h1 className="text-6xl md:text-8xl font-display font-bold tracking-tighter leading-[0.95]">
<span className="text-wm-muted/40">{t('hero.noiseWord')}</span>
<span className="mx-3 md:mx-5 text-wm-border/50">β</span>
<span className="text-transparent bg-clip-text bg-gradient-to-r from-wm-green to-emerald-300 text-glow">{t('hero.signalWord')}</span>
</h1>
<SignalBars />
<p className="text-lg md:text-xl text-wm-muted max-w-xl mx-auto font-light leading-relaxed">
{t('hero.valueProps')}
</p>
<div className="flex flex-col sm:flex-row gap-3 justify-center mt-8">
{showGoToDashboard ? (
<a href={DASHBOARD_URL} className="bg-wm-green text-wm-bg px-6 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors flex items-center justify-center gap-2">
{t('hero.goToDashboard')} <ArrowRight className="w-4 h-4" aria-hidden="true" />
</a>
) : (
<a href="#pricing" className="bg-wm-green text-wm-bg px-6 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors flex items-center justify-center gap-2">
{t('hero.choosePlan')} <ArrowRight className="w-4 h-4" aria-hidden="true" />
</a>
)}
{showSignIn && (
<button type="button" onClick={openSignIn} className="border border-wm-border text-wm-text px-6 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:border-wm-text transition-colors">
{t('hero.signIn')}
</button>
)}
</div>
<div className="flex items-center justify-center mt-4">
<a href={appendRefToUrl(DASHBOARD_URL, getRefCode())} className="text-xs text-wm-green font-mono hover:text-green-300 transition-colors flex items-center gap-1">
{t('hero.tryFreeDashboard')} <ArrowRight className="w-3 h-3" aria-hidden="true" />
</a>
</div>
</motion.div>
</div>
</section>
);
};
/* βββ 2. Social proof (current β WIRED badge already in hero) βββ */
const SocialProof = () => (
<section className="border-y border-wm-border bg-wm-card/30 py-16 px-6">
<div className="max-w-5xl mx-auto">
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 text-center mb-12">
{[
{ value: "2M+", label: t('socialProof.uniqueVisitors') },
{ value: "421K", label: t('socialProof.peakDailyUsers') },
{ value: "190+", label: t('socialProof.countriesReached') },
{ value: "500+", label: t('socialProof.liveDataSources') },
].map((stat, i) => (
<div key={i}>
<p className="text-3xl md:text-4xl font-display font-bold text-wm-green">{stat.value}</p>
<p className="text-xs font-mono text-wm-muted uppercase tracking-widest mt-1">{stat.label}</p>
</div>
))}
</div>
<blockquote className="max-w-3xl mx-auto text-center">
<p className="text-lg md:text-xl text-wm-muted italic leading-relaxed">
"{t('socialProof.quote')}"
</p>
<footer className="mt-6 flex items-center justify-center gap-3">
<a href="https://www.wired.com/story/world-monitor-elie-habib/" target="_blank" rel="noreferrer" className="inline-flex items-center gap-2 text-wm-muted hover:text-wm-text transition-colors">
<img src={wiredLogo} alt="WIRED" loading="lazy" className="h-5 brightness-0 invert opacity-60 hover:opacity-100 transition-opacity" />
</a>
</footer>
</blockquote>
</div>
</section>
);
/* βββ 3. Two-path split (new β from draft) βββ */
const TwoPathSplit = () => (
<section className="py-24 px-6 max-w-5xl mx-auto" id="tiers">
<h2 className="sr-only">Plans</h2>
<div className="grid md:grid-cols-2 gap-8">
<div className="bg-wm-card border border-wm-green p-8 relative border-glow">
<div className="absolute top-0 left-0 w-full h-1 bg-wm-green" />
<h3 className="font-display text-2xl font-bold mb-2">{t('twoPath.proTitle')}</h3>
<p className="text-sm text-wm-muted mb-6">{t('twoPath.proDesc')}</p>
<ul className="space-y-3 mb-8">
{[t('twoPath.proF1'), t('twoPath.proF2'), t('twoPath.proF3'), t('twoPath.proF4'), t('twoPath.proF5'), t('twoPath.proF6'), t('twoPath.proF7'), t('twoPath.proF8'), t('twoPath.proF9')].map((f, i) => (
<li key={i} className="flex items-start gap-3 text-sm">
<Check className="w-4 h-4 shrink-0 mt-0.5 text-wm-green" aria-hidden="true" />
<span className="text-wm-muted">{f}</span>
</li>
))}
</ul>
<a href="#pricing" className="block text-center py-2.5 rounded-sm font-mono text-xs uppercase tracking-wider font-bold bg-wm-green text-wm-bg hover:bg-green-400 transition-colors">
{t('twoPath.choosePlan')}
</a>
</div>
<div className="bg-wm-card border border-wm-border p-8">
<h3 className="font-display text-2xl font-bold mb-2">{t('twoPath.entTitle')}</h3>
<p className="text-sm text-wm-muted mb-6">{t('twoPath.entDesc')}</p>
<ul className="space-y-3 mb-8">
<li className="text-xs font-mono text-wm-green uppercase tracking-wider mb-1">{t('twoPath.entF1')}</li>
{[t('twoPath.entF2'), t('twoPath.entF3'), t('twoPath.entF4'), t('twoPath.entF5'), t('twoPath.entF6'), t('twoPath.entF7'), t('twoPath.entF8'), t('twoPath.entF9'), t('twoPath.entF10'), t('twoPath.entF11')].map((f, i) => (
<li key={i} className="flex items-start gap-3 text-sm">
<Check className="w-4 h-4 shrink-0 mt-0.5 text-wm-muted" aria-hidden="true" />
<span className="text-wm-muted">{f}</span>
</li>
))}
</ul>
<a href="#enterprise" className="block text-center py-2.5 rounded-sm font-mono text-xs uppercase tracking-wider font-bold border border-wm-border text-wm-muted hover:text-wm-text hover:border-wm-text transition-colors">
{t('twoPath.entCta')}
</a>
</div>
</div>
</section>
);
/* βββ 4. Why Upgrade (new β from draft) βββ */
const WhyUpgrade = () => {
const items = [
{ icon: <Filter className="w-6 h-6" aria-hidden="true" />, title: t('whyUpgrade.noiseTitle'), desc: t('whyUpgrade.noiseDesc') },
{ icon: <TrendingUp className="w-6 h-6" aria-hidden="true" />, title: t('whyUpgrade.fasterTitle'), desc: t('whyUpgrade.fasterDesc') },
{ icon: <SlidersHorizontal className="w-6 h-6" aria-hidden="true" />, title: t('whyUpgrade.controlTitle'), desc: t('whyUpgrade.controlDesc') },
{ icon: <Telescope className="w-6 h-6" aria-hidden="true" />, title: t('whyUpgrade.deeperTitle'), desc: t('whyUpgrade.deeperDesc') },
];
return (
<section className="py-24 px-6 border-t border-wm-border bg-wm-card/20">
<div className="max-w-5xl mx-auto">
<h2 className="text-3xl md:text-5xl font-display font-bold mb-16 text-center">{t('whyUpgrade.title')}</h2>
<div className="grid md:grid-cols-2 gap-8">
{items.map((item, i) => (
<div key={i} className="flex gap-5">
<div className="text-wm-green shrink-0 mt-1">{item.icon}</div>
<div>
<h3 className="font-bold text-lg mb-2">{item.title}</h3>
<p className="text-sm text-wm-muted leading-relaxed">{item.desc}</p>
</div>
</div>
))}
</div>
</div>
</section>
);
};
/* βββ Three Flagship Pillars (new) βββ */
const Pillars = () => {
const items = [
{ icon: <Brain className="w-7 h-7" aria-hidden="true" />, title: t('pillars.askIt'), desc: t('pillars.askItDesc') },
{ icon: <Bell className="w-7 h-7" aria-hidden="true" />, title: t('pillars.subscribeIt'), desc: t('pillars.subscribeItDesc') },
{ icon: <Plug className="w-7 h-7" aria-hidden="true" />, title: t('pillars.buildOnIt'), desc: t('pillars.buildOnItDesc') },
];
return (
<section className="py-20 px-6 border-t border-wm-border">
<div className="max-w-5xl mx-auto">
<div className="grid md:grid-cols-3 gap-6">
{items.map((item, i) => (
<div key={i} className="bg-wm-card border border-wm-border p-6 hover:border-wm-green/30 transition-colors">
<div className="text-wm-green mb-4">{item.icon}</div>
<h3 className="font-display text-xl font-bold mb-2">{item.title}</h3>
<p className="text-sm text-wm-muted leading-relaxed">{item.desc}</p>
</div>
))}
</div>
</div>
</section>
);
};
/* βββ Delivery Desk (new) βββ */
const DeliveryDesk = () => (
<section className="py-24 px-6 border-t border-wm-border bg-wm-card/20">
<div className="max-w-4xl mx-auto text-center">
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-wm-green/30 bg-wm-green/10 text-wm-green text-xs font-mono mb-6">
{t('deliveryDesk.eyebrow')}
</div>
<h2 className="text-3xl md:text-5xl font-display font-bold mb-6">{t('deliveryDesk.title')}</h2>
<p className="text-lg text-wm-muted leading-relaxed mb-6">
{t('deliveryDesk.body')}
</p>
<p className="text-xl md:text-2xl font-display font-bold text-wm-green mb-8">
{t('deliveryDesk.closer')}
</p>
<p className="font-mono text-xs text-wm-muted uppercase tracking-widest">
{t('deliveryDesk.channels')}
</p>
</div>
</section>
);
/* βββ 5. Live Dashboard Embed (current) βββ */
// max-w-6xl (1152px) container inside px-6 section padding.
const LIVE_PREVIEW_IMAGE_SIZES = '(min-width: 1200px) 1152px, calc(100vw - 3rem)';
const LivePreview = () => (
<section className="px-6 py-16">
<div className="max-w-6xl mx-auto">
<div className="relative rounded-lg overflow-hidden border border-wm-border shadow-2xl shadow-wm-green/5">
<div className="bg-wm-card px-4 py-2 border-b border-wm-border flex items-center gap-3">
<div className="flex gap-1.5">
<div className="w-3 h-3 rounded-full bg-red-500/70" />
<div className="w-3 h-3 rounded-full bg-yellow-500/70" />
<div className="w-3 h-3 rounded-full bg-green-500/70" />
</div>
<span className="font-mono text-xs text-wm-muted ml-2">{t('livePreview.windowTitle')}</span>
<a
href={appendRefToUrl(DASHBOARD_URL, getRefCode())}
target="_blank"
rel="noreferrer"
className="ml-auto text-xs text-wm-green font-mono hover:text-green-300 transition-colors flex items-center gap-1"
>
{t('livePreview.openFullScreen')} <ExternalLink className="w-3 h-3" aria-hidden="true" />
</a>
</div>
<div className="relative aspect-[16/9] bg-black">
<picture>
<source type="image/avif" srcSet={DASHBOARD_SCREENSHOT_AVIF_SRCSET} sizes={LIVE_PREVIEW_IMAGE_SIZES} />
<source type="image/webp" srcSet={DASHBOARD_SCREENSHOT_WEBP_SRCSET} sizes={LIVE_PREVIEW_IMAGE_SIZES} />
<img
src={DASHBOARD_SCREENSHOT_JPG}
alt="World Monitor Dashboard"
className="absolute inset-0 w-full h-full object-cover"
loading="lazy"
decoding="async"
/>
</picture>
<iframe
// ?embed=pro-preview is the unique marker the main app's
// IS_EMBEDDED_PREVIEW helper keys off to silence premium-RPC
// 401s that otherwise surface in /pro's parent console. See
// src/utils/embedded-preview.ts. Not a generic iframe gate β
// enterprise white-label embeds without this marker keep
// firing premium RPCs normally.
src={DASHBOARD_EMBED_PREVIEW_URL}
title={t('livePreview.iframeTitle')}
className="relative w-full h-full border-0"
loading="lazy"
sandbox="allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox"
/>
<div className="absolute inset-0 pointer-events-none bg-gradient-to-t from-wm-bg/80 via-transparent to-transparent" />
<div className="absolute bottom-4 left-0 right-0 text-center pointer-events-auto">
<a
href={appendRefToUrl(DASHBOARD_URL, getRefCode())}
target="_blank"
rel="noreferrer"
className="inline-flex items-center gap-2 bg-wm-green text-wm-bg px-6 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors"
>
{t('livePreview.tryLiveDashboard')} <ArrowRight className="w-4 h-4" aria-hidden="true" />
</a>
</div>
</div>
</div>
<p className="text-center text-xs text-wm-muted font-mono mt-4">
{t('livePreview.description')}
</p>
</div>
</section>
);
/* βββ 6. Source Marquee (current) βββ */
const SourceMarquee = () => {
const sources = [
"Finnhub", "FRED", "Bloomberg", "CNBC", "Nikkei", "CoinGecko", "Polymarket",
"Reuters", "ACLED", "UCDP", "GDELT", "NASA FIRMS", "USGS", "OpenSky", "AISStream",
"Cloudflare Radar", "BGPStream", "GPSJam", "NOAA", "Copernicus", "IAEA",
"Al Jazeera", "Sky News", "Euronews", "DW News", "France 24",
"OilPrice", "Rigzone", "Maritime Executive", "Hellenic Shipping News",
"Defense One", "Jane's", "The War Zone",
"TechCrunch", "Ars Technica", "The Verge", "Wired",
"Krebs on Security", "BleepingComputer", "The Record",
];
const items = sources.join(" Β· ");
return (
<section className="border-y border-wm-border bg-wm-card/20 overflow-hidden py-4" aria-label="Data sources">
<div className="marquee-track whitespace-nowrap font-mono text-xs text-wm-muted uppercase tracking-widest">
<span className="inline-block px-4">{items} Β· </span>
<span className="inline-block px-4">{items} Β· </span>
</div>
</section>
);
};
/* βββ 7. Pro Showcase + Slack Mock (current) βββ */
const ProShowcase = () => (
<section className="py-24 px-6 border-t border-wm-border bg-wm-card/30" id="pro">
<div className="max-w-7xl mx-auto grid lg:grid-cols-2 gap-16 items-start">
<div>
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-wm-green/30 bg-wm-green/10 text-wm-green text-xs font-mono mb-6">
{t('proShowcase.proTier')}
</div>
<h2 className="text-3xl md:text-5xl font-display font-bold mb-6">{t('proShowcase.title')}</h2>
<p className="text-wm-muted mb-8">
{t('proShowcase.subtitle')}
</p>
<div className="space-y-6">
<div className="flex gap-4">
<TrendingUp className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.equityResearch')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.equityResearchDesc')}</p>
</div>
</div>
<div className="flex gap-4">
<Globe className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.geopoliticalAnalysis')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.geopoliticalAnalysisDesc')}</p>
</div>
</div>
<div className="flex gap-4">
<BarChart3 className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.economyAnalytics')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.economyAnalyticsDesc')}</p>
</div>
</div>
<div className="flex gap-4">
<ShieldAlert className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.riskMonitoring')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.riskMonitoringDesc')}</p>
</div>
</div>
<div className="flex gap-4">
<Telescope className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h4 className="font-bold mb-1">
{t('proShowcase.orbitalSurveillance')}
<SoonBadge />
</h4>
<p className="text-sm text-wm-muted">{t('proShowcase.orbitalSurveillanceDesc').replace(/^\(Soon\)\s*/, '')}</p>
</div>
</div>
<div className="flex gap-4">
<Clock className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.morningBriefs')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.morningBriefsDesc')}</p>
</div>
</div>
<div className="flex gap-4">
<Key className="w-6 h-6 text-wm-green shrink-0" aria-hidden="true" />
<div>
<h3 className="font-bold mb-1">{t('proShowcase.oneKey')}</h3>
<p className="text-sm text-wm-muted">{t('proShowcase.oneKeyDesc')}</p>
</div>
</div>
</div>
<div className="mt-10 pt-8 border-t border-wm-border">
<p className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-4">{t('proShowcase.deliveryLabel')}</p>
<div className="flex gap-6">
{[
{ icon: <SlackIcon />, label: "Slack" },
{ icon: <MessageSquare className="w-5 h-5" aria-hidden="true" />, label: "Discord" },
{ icon: <Send className="w-5 h-5" aria-hidden="true" />, label: "Telegram" },
{ icon: <Mail className="w-5 h-5" aria-hidden="true" />, label: "Email" },
{ icon: <Plug className="w-5 h-5" aria-hidden="true" />, label: "Webhook" },
].map((ch, i) => (
<div key={i} className="flex flex-col items-center gap-1.5 text-wm-muted hover:text-wm-text transition-colors cursor-pointer">
{ch.icon}
<span className="text-[10px] font-mono">{ch.label}</span>
</div>
))}
</div>
</div>
</div>
<div className="bg-[#1a1d21] rounded-lg border border-[#35373b] overflow-hidden shadow-2xl sticky top-24">
<div className="bg-[#222529] px-4 py-3 border-b border-[#35373b] flex items-center gap-3">
<div className="w-3 h-3 rounded-full bg-red-500" />
<div className="w-3 h-3 rounded-full bg-yellow-500" />
<div className="w-3 h-3 rounded-full bg-green-500" />
<span className="ml-2 font-mono text-xs text-gray-400">#world-monitor-alerts</span>
</div>
<div className="p-6 space-y-6 font-sans text-sm">
<div className="flex gap-4">
<div className="w-10 h-10 rounded bg-wm-green/20 flex items-center justify-center shrink-0">
<Globe className="w-6 h-6 text-wm-green" aria-hidden="true" />
</div>
<div>
<div className="flex items-baseline gap-2 mb-1">
<span className="font-bold text-gray-200">World Monitor</span>
<span className="text-xs text-gray-500 bg-gray-800 px-1 rounded">APP</span>
<span className="text-xs text-gray-500">8:00 AM</span>
</div>
<p className="text-gray-300 font-bold mb-3">{t('slackMock.morningBrief')} · Mar 6</p>
<div className="space-y-3">
<div className="pl-3 border-l-2 border-blue-500">
<span className="text-blue-400 font-bold text-xs uppercase tracking-wider">{t('slackMock.markets')}</span>
<p className="text-gray-300 mt-1">{t('slackMock.marketsText')}</p>
</div>
<div className="pl-3 border-l-2 border-orange-500">
<span className="text-orange-400 font-bold text-xs uppercase tracking-wider">{t('slackMock.elevated')}</span>
<p className="text-gray-300 mt-1">{t('slackMock.elevatedText')}</p>
</div>
<div className="pl-3 border-l-2 border-yellow-500">
<span className="text-yellow-400 font-bold text-xs uppercase tracking-wider">{t('slackMock.watch')}</span>
<p className="text-gray-300 mt-1">{t('slackMock.watchText')}</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
);
/* βββ 8. Audience Personas (new β from draft) βββ */
const AudiencePersonas = () => {
const personas = [
{ icon: <LineChart className="w-6 h-6" aria-hidden="true" />, title: t('audience.investorsTitle'), desc: t('audience.investorsDesc') },
{ icon: <Fuel className="w-6 h-6" aria-hidden="true" />, title: t('audience.tradersTitle'), desc: t('audience.tradersDesc') },
{ icon: <Search className="w-6 h-6" aria-hidden="true" />, title: t('audience.researchersTitle'), desc: t('audience.researchersDesc') },
{ icon: <Globe className="w-6 h-6" aria-hidden="true" />, title: t('audience.journalistsTitle'), desc: t('audience.journalistsDesc') },
{ icon: <Landmark className="w-6 h-6" aria-hidden="true" />, title: t('audience.govTitle'), desc: t('audience.govDesc') },
{ icon: <Building2 className="w-6 h-6" aria-hidden="true" />, title: t('audience.teamsTitle'), desc: t('audience.teamsDesc') },
];
return (
<section className="py-24 px-6">
<div className="max-w-5xl mx-auto">
<h2 className="text-3xl md:text-5xl font-display font-bold mb-16 text-center">{t('audience.title')}</h2>
<div className="grid md:grid-cols-3 gap-6">
{personas.map((p, i) => (
<div key={i} className="bg-wm-card border border-wm-border p-6 hover:border-wm-green/30 transition-colors">
<div className="text-wm-green mb-4">{p.icon}</div>
<h3 className="font-bold mb-2">{p.title}</h3>
<p className="text-sm text-wm-muted">{p.desc}</p>
</div>
))}
</div>
</div>
</section>
);
};
/* βββ 9. API Section (current) βββ */
const ApiSection = () => (
<section className="py-24 px-6 border-y border-wm-border bg-[#0a0a0a]" id="api">
<div className="max-w-7xl mx-auto grid lg:grid-cols-2 gap-16 items-center">
<div className="order-2 lg:order-1">
<div className="bg-black border border-wm-border rounded-lg overflow-hidden font-mono text-sm">
<div className="bg-wm-card px-4 py-2 border-b border-wm-border flex items-center gap-2">
<Terminal className="w-4 h-4 text-wm-muted" aria-hidden="true" />
<span className="text-wm-muted text-xs">api.worldmonitor.app</span>
</div>
<div className="p-6 text-gray-300 overflow-x-auto">
<pre><code>
<span className="text-wm-blue">curl</span> \<br/>
<span className="text-wm-green">"https://api.worldmonitor.app/v1/intelligence/convergence?region=MENA&time_window=6h"</span> \<br/>
-H <span className="text-wm-green">"Authorization: Bearer wm_live_xxx"</span><br/><br/>
<span className="text-wm-muted">{"{"}</span><br/>
<span className="text-wm-blue">"status"</span>: <span className="text-wm-green">"success"</span>,<br/>
<span className="text-wm-blue">"data"</span>: <span className="text-wm-muted">{"["}</span><br/>
<span className="text-wm-muted">{"{"}</span><br/>
<span className="text-wm-blue">"type"</span>: <span className="text-wm-green">"multi_signal_convergence"</span>,<br/>
<span className="text-wm-blue">"signals"</span>: <span className="text-wm-muted">["military_flights", "ais_dark_ships", "oref_sirens"]</span>,<br/>
<span className="text-wm-blue">"confidence"</span>: <span className="text-orange-400">0.92</span>,<br/>
<span className="text-wm-blue">"location"</span>: <span className="text-wm-muted">{"{"}</span> <span className="text-wm-blue">"lat"</span>: <span className="text-orange-400">34.05</span>, <span className="text-wm-blue">"lng"</span>: <span className="text-orange-400">35.12</span> <span className="text-wm-muted">{"}"}</span><br/>
<span className="text-wm-muted">{"}"}</span><br/>
<span className="text-wm-muted">{"]"}</span><br/>
<span className="text-wm-muted">{"}"}</span>
</code></pre>
</div>
</div>
</div>
<div className="order-1 lg:order-2">
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-wm-border bg-wm-card text-wm-muted text-xs font-mono mb-6">
{t('apiSection.apiTier')}
</div>
<h2 className="text-3xl md:text-5xl font-display font-bold mb-6">{t('apiSection.title')}</h2>
<p className="text-wm-muted mb-8">
{t('apiSection.subtitle')}
</p>
<ul className="space-y-4 mb-8">
<li className="flex items-start gap-3">
<Server className="w-5 h-5 text-wm-muted shrink-0" aria-hidden="true" />
<span className="text-sm">{t('apiSection.restApi')}</span>
</li>
<li className="flex items-start gap-3">
<Lock className="w-5 h-5 text-wm-muted shrink-0" aria-hidden="true" />
<span className="text-sm">{t('apiSection.authenticated')}</span>
</li>
<li className="flex items-start gap-3">
<Database className="w-5 h-5 text-wm-muted shrink-0" aria-hidden="true" />
<span className="text-sm">{t('apiSection.structured')}</span>
</li>
<li className="flex items-start gap-3">
<Terminal className="w-5 h-5 text-wm-muted shrink-0" aria-hidden="true" />
<span className="text-sm">
{t('apiSection.cli')}{' β '}
<a
href="https://www.npmjs.com/package/worldmonitor"
target="_blank"
rel="noopener noreferrer"
className="font-mono text-wm-green hover:underline"
>
npx worldmonitor
</a>
</span>
</li>
</ul>
<div className="grid grid-cols-2 gap-4 mb-8 p-4 bg-wm-card border border-wm-border rounded-sm">
<div>
<p className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('apiSection.starter')}</p>
<p className="text-sm font-bold">{t('apiSection.starterReqs')}</p>
<p className="text-xs text-wm-muted">{t('apiSection.starterWebhooks')}</p>
</div>
<div>
<p className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('apiSection.business')}</p>
<p className="text-sm font-bold">{t('apiSection.businessReqs')}</p>
<p className="text-xs text-wm-muted">{t('apiSection.businessWebhooks')}</p>
</div>
</div>
<p className="text-sm text-wm-muted border-l-2 border-wm-border pl-4">
{t('apiSection.feedData')}
</p>
</div>
</div>
</section>
);
/* βββ 10. Enterprise Showcase (current + enriched CTA) βββ */
const EnterpriseShowcase = () => (
<section className="py-24 px-6" id="enterprise">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-wm-border bg-wm-card text-wm-muted text-xs font-mono mb-6">
{t('enterpriseShowcase.enterpriseTier')}
</div>
<h2 className="text-3xl md:text-5xl font-display font-bold mb-6">{t('enterpriseShowcase.title')}</h2>
<p className="text-wm-muted max-w-2xl mx-auto">
{t('enterpriseShowcase.subtitle')}
</p>
</div>
<div className="grid md:grid-cols-3 gap-6 mb-6">
<div className="bg-wm-card border border-wm-border p-6">
<ShieldAlert className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.security')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.securityDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<Cpu className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.aiAgents')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.aiAgentsDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<Layers className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.dataLayers')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.dataLayersDesc')}</p>
</div>
</div>
<div className="grid md:grid-cols-3 gap-6 mb-12">
<div className="bg-wm-card border border-wm-border p-6">
<Plug className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.connectors')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.connectorsDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<PanelTop className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.whiteLabel')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.whiteLabelDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<BarChart3 className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.financial')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.financialDesc')}</p>
</div>
</div>
<div className="data-grid mb-12">
<div className="data-cell">
<h4 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.commodity')}</h4>
<p className="text-sm">{t('enterpriseShowcase.commodityDesc')}</p>
</div>
<div className="data-cell">
<h4 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.government')}</h4>
<p className="text-sm">{t('enterpriseShowcase.governmentDesc')}</p>
</div>
<div className="data-cell">
<h4 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.risk')}</h4>
<p className="text-sm">{t('enterpriseShowcase.riskDesc')}</p>
</div>
<div className="data-cell">
<h4 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.soc')}</h4>
<p className="text-sm">{t('enterpriseShowcase.socDesc')}</p>
</div>
</div>
<div className="text-center mt-12">
<a
href="#enterprise-contact"
aria-label="Talk to sales about Enterprise plans"
className="inline-flex items-center gap-2 bg-wm-green text-wm-bg px-8 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors"
>
{t('enterpriseShowcase.talkToSales')} <ArrowRight className="w-4 h-4" aria-hidden="true" />
</a>
</div>
</div>
</section>
);
/* βββ 11. Comparison Table (simplified columns, kept technical rows) βββ */
const PricingTable = () => {
const rows = [
{ feature: t('pricingTable.dataRefresh'), free: t('pricingTable.f5_15min'), pro: t('pricingTable.fLt60s'), api: t('pricingTable.fPerRequest'), ent: t('pricingTable.fLiveEdge') },
{ feature: t('pricingTable.dashboard'), free: t('pricingTable.f50panels'), pro: t('pricingTable.f50panels'), api: "\u2014", ent: t('pricingTable.fWhiteLabel') },
{ feature: t('pricingTable.ai'), free: t('pricingTable.fBYOK'), pro: t('pricingTable.fIncluded'), api: "\u2014", ent: t('pricingTable.fAgentsPersonas') },
{ feature: t('pricingTable.briefsAlerts'), free: "\u2014", pro: t('pricingTable.fDailyFlash'), api: "\u2014", ent: t('pricingTable.fTeamDist') },
{ feature: t('pricingTable.delivery'), free: "\u2014", pro: t('pricingTable.fSlackTgWa'), api: t('pricingTable.fWebhook'), ent: t('pricingTable.fSiemMcp') },
{ feature: t('pricingTable.apiRow'), free: "\u2014", pro: "\u2014", api: t('pricingTable.fRestWebhook'), ent: t('pricingTable.fMcpBulk') },
{ feature: t('pricingTable.infraLayers'), free: t('pricingTable.f50plus'), pro: t('pricingTable.f50plus'), api: "\u2014", ent: t('pricingTable.fTensOfThousands') },
{ feature: t('pricingTable.satellite'), free: t('pricingTable.fLiveTracking'), pro: t('pricingTable.fPassAlerts'), api: "\u2014", ent: t('pricingTable.fImagerySar') },
{ feature: t('pricingTable.connectorsRow'), free: "\u2014", pro: "\u2014", api: "\u2014", ent: t('pricingTable.f100plus') },
{ feature: t('pricingTable.deployment'), free: t('pricingTable.fCloud'), pro: t('pricingTable.fCloud'), api: t('pricingTable.fCloud'), ent: t('pricingTable.fCloudOnPrem') },
{ feature: t('pricingTable.securityRow'), free: t('pricingTable.fStandard'), pro: t('pricingTable.fStandard'), api: t('pricingTable.fKeyAuth'), ent: t('pricingTable.fSsoMfa') },
];
return (
<section className="py-24 px-6 max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-3xl md:text-5xl font-display font-bold mb-6">{t('pricingTable.title')}</h2>
</div>
<div className="hidden md:block">
<div className="grid grid-cols-5 gap-4 mb-4 pb-4 border-b border-wm-border font-mono text-xs uppercase tracking-widest text-wm-muted">
<div>{t('pricingTable.feature')}</div>
<div>{t('pricingTable.freeHeader')}</div>
<div className="text-wm-green">{t('pricingTable.proHeader')}</div>
<div>{t('pricingTable.apiHeader')}</div>
<div>{t('pricingTable.entHeader')}</div>
</div>
{rows.map((row, i) => (
<div key={i} className="grid grid-cols-5 gap-4 py-4 border-b border-wm-border/50 text-sm hover:bg-wm-card/50 transition-colors">
<div className="font-medium">{row.feature}</div>
<div className="text-wm-muted">{row.free}</div>
<div className="text-wm-green">{row.pro}</div>
<div className="text-wm-muted">{row.api}</div>
<div className="text-wm-muted">{row.ent}</div>
</div>
))}
</div>
<div className="md:hidden space-y-4">
{rows.map((row, i) => (
<div key={i} className="bg-wm-card border border-wm-border p-4 rounded-sm">
<p className="font-medium text-sm mb-3">{row.feature}</p>
<div className="grid grid-cols-2 gap-2 text-xs">
<div><span className="text-wm-muted">{t('tiers.free')}:</span> {row.free}</div>
<div><span className="text-wm-green">{t('tiers.pro')}:</span> <span className="text-wm-green">{row.pro}</span></div>
<div><span className="text-wm-muted">{t('nav.api')}:</span> {row.api}</div>
<div><span className="text-wm-muted">{t('tiers.enterprise')}:</span> {row.ent}</div>
</div>
</div>
))}
</div>
<p className="text-center text-sm text-wm-muted mt-8">
{t('pricingTable.noteBelow')}
</p>
</section>
);
};
/* βββ 12. FAQ (draft copy β warmer tone) βββ */
const FAQ = () => {
const faqs = [
{ q: t('faq.q1'), a: t('faq.a1'), open: true },
{ q: t('faq.q2'), a: t('faq.a2') },
{ q: t('faq.q3'), a: t('faq.a3') },
{ q: t('faq.q4'), a: t('faq.a4') },
{ q: t('faq.q5'), a: t('faq.a5') },
{ q: t('faq.q6'), a: t('faq.a6') },
{ q: t('faq.q7'), a: t('faq.a7') },
{ q: t('faq.q8'), a: t('faq.a8') },
{ q: t('faq.q9'), a: t('faq.a9') },
{ q: t('faq.q10'), a: t('faq.a10') },
{ q: t('faq.q11'), a: t('faq.a11') },
{ q: t('faq.q12'), a: t('faq.a12') },
{ q: t('faq.q13'), a: t('faq.a13') },
];
return (
<section className="py-24 px-6 max-w-3xl mx-auto">
<h2 className="text-3xl font-display font-bold mb-12 text-center">{t('faq.title')}</h2>
<div className="space-y-4">
{faqs.map((faq, i) => (
<details key={i} open={faq.open} className="group bg-wm-card border border-wm-border rounded-sm [&_summary::-webkit-details-marker]:hidden">
<summary className="flex items-center justify-between p-6 cursor-pointer font-medium">
{faq.q}
<ChevronDown className="w-5 h-5 text-wm-muted group-open:rotate-180 transition-transform" aria-hidden="true" />
</summary>
<div className="px-6 pb-6 text-wm-muted text-sm border-t border-wm-border pt-4 mt-2">
{faq.a}
</div>
</details>
))}
</div>
</section>
);
};
/* βββ Enterprise Page (dedicated /pro/#enterprise) βββ */
const EnterprisePage = () => (
<div className="min-h-screen selection:bg-wm-green/30 selection:text-wm-green">
<nav className="fixed top-0 left-0 right-0 z-50 glass-panel border-b-0 border-x-0 rounded-none" aria-label="Main navigation">
<div className="max-w-7xl mx-auto px-6 h-16 flex items-center justify-between">
<a href="#" onClick={(e) => { e.preventDefault(); window.location.hash = ''; }}><Logo /></a>
<div className="hidden md:flex items-center gap-8 text-sm font-mono text-wm-muted">
<a href="#" onClick={(e) => { e.preventDefault(); window.location.hash = ''; }} className="hover:text-wm-text transition-colors">{t('nav.pro')}</a>
<a href="#enterprise" onClick={(e) => { e.preventDefault(); document.getElementById('features')?.scrollIntoView({ behavior: 'smooth' }); }} className="hover:text-wm-text transition-colors">{t('nav.enterprise')}</a>
<a href="#enterprise-contact" onClick={(e) => { e.preventDefault(); document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); }} className="hover:text-wm-green transition-colors">{t('enterpriseShowcase.talkToSales')}</a>
</div>
<a href="#enterprise-contact" onClick={(e) => { e.preventDefault(); document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); }} className="bg-wm-green text-wm-bg px-4 py-2 rounded-sm font-mono text-xs uppercase tracking-wider font-bold hover:bg-green-400 transition-colors">
{t('enterpriseShowcase.talkToSales')}
</a>
</div>
</nav>
<main className="pt-24">
{/* Hero */}
<section className="py-24 px-6 text-center">
<div className="max-w-4xl mx-auto">
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-wm-border bg-wm-card text-wm-muted text-xs font-mono mb-6">
{t('enterpriseShowcase.enterpriseTier')}
</div>
<h2 className="text-4xl md:text-6xl font-display font-bold mb-6">{t('enterpriseShowcase.title')}</h2>
<p className="text-lg text-wm-muted max-w-2xl mx-auto mb-10">
{t('enterpriseShowcase.subtitle')}
</p>
<a href="#enterprise-contact" onClick={(e) => { e.preventDefault(); document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); }} className="inline-flex items-center gap-2 bg-wm-green text-wm-bg px-8 py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors">
{t('enterpriseShowcase.talkToSales')} <ArrowRight className="w-4 h-4" aria-hidden="true" />
</a>
</div>
</section>
{/* Features grid */}
<section className="py-24 px-6" id="features">
<div className="max-w-7xl mx-auto">
<h2 className="sr-only">Enterprise Features</h2>
<div className="grid md:grid-cols-3 gap-6 mb-6">
<div className="bg-wm-card border border-wm-border p-6">
<ShieldAlert className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.security')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.securityDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<Cpu className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.aiAgents')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.aiAgentsDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<Layers className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.dataLayers')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.dataLayersDesc')}</p>
</div>
</div>
<div className="grid md:grid-cols-3 gap-6 mb-12">
<div className="bg-wm-card border border-wm-border p-6">
<Plug className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.connectors')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.connectorsDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<PanelTop className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.whiteLabel')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.whiteLabelDesc')}</p>
</div>
<div className="bg-wm-card border border-wm-border p-6">
<BarChart3 className="w-8 h-8 text-wm-muted mb-4" aria-hidden="true" />
<h3 className="font-bold mb-2">{t('enterpriseShowcase.financial')}</h3>
<p className="text-sm text-wm-muted">{t('enterpriseShowcase.financialDesc')}</p>
</div>
</div>
</div>
</section>
{/* Use cases */}
<section className="py-24 px-6 border-t border-wm-border">
<div className="max-w-7xl mx-auto">
<h2 className="text-3xl font-display font-bold mb-12 text-center">{t('enterpriseShowcase.title')}</h2>
<div className="data-grid">
<div className="data-cell">
<h3 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.commodity')}</h3>
<p className="text-sm">{t('enterpriseShowcase.commodityDesc')}</p>
</div>
<div className="data-cell">
<h3 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.government')}</h3>
<p className="text-sm">{t('enterpriseShowcase.governmentDesc')}</p>
</div>
<div className="data-cell">
<h3 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.risk')}</h3>
<p className="text-sm">{t('enterpriseShowcase.riskDesc')}</p>
</div>
<div className="data-cell">
<h3 className="font-mono text-xs text-wm-muted uppercase tracking-widest mb-2">{t('enterpriseShowcase.soc')}</h3>
<p className="text-sm">{t('enterpriseShowcase.socDesc')}</p>
</div>
</div>
</div>
</section>
{/* Contact form */}
<section className="py-24 px-6 border-t border-wm-border" id="contact">
<div className="max-w-xl mx-auto">
<h2 className="font-display text-3xl font-bold mb-2 text-center">{t('enterpriseShowcase.contactFormTitle')}</h2>
<p className="text-sm text-wm-muted mb-10 text-center">{t('enterpriseShowcase.contactFormSubtitle')}</p>
<form className="space-y-4" onSubmit={async (e) => {
e.preventDefault();
const form = e.currentTarget;
const btn = form.querySelector('button[type="submit"]') as HTMLButtonElement;
const origText = btn.textContent;
btn.disabled = true;
btn.textContent = t('enterpriseShowcase.contactSending');
const fd = new FormData(form);
const honeypot = (form.querySelector('input[name="website"]') as HTMLInputElement)?.value || '';
const turnstileWidget = form.querySelector('.cf-turnstile') as HTMLElement | null;
let turnstileToken = turnstileWidget?.dataset.token || '';
if (!turnstileToken && turnstileWidget) {
// Turnstile loads lazily (viewport-triggered), so a fast or
// autofilled submit can arrive before the widget produced a
// token. Kick the loader and give the challenge a bounded
// window; if it still hasn't resolved, POST anyway β the
// server verdict (and the existing failure UX + widget
// reset) stays the authority, same as an expired token.
if (await ensureTurnstileScript()) renderTurnstileWidgets();
for (let i = 0; i < 40 && !turnstileWidget.dataset.token; i++) {
await new Promise((resolve) => setTimeout(resolve, 250));
}
turnstileToken = turnstileWidget.dataset.token || '';
}
try {
const res = await fetch(`${API_BASE}/leads/v1/submit-contact`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: fd.get('email'),
name: fd.get('name'),
organization: fd.get('organization'),
phone: fd.get('phone'),
message: fd.get('message'),
source: 'enterprise-contact',
website: honeypot,
turnstileToken,
}),
});
const errorEl = form.querySelector('[data-form-error]') as HTMLElement | null;
if (!res.ok) {
const data = await res.json().catch(() => ({}));
if (res.status === 422 && errorEl) {
errorEl.textContent = data.message || data.error || t('enterpriseShowcase.workEmailRequired');
errorEl.classList.remove('hidden');
btn.textContent = origText;
btn.disabled = false;
return;
}
throw new Error();
}
if (errorEl) errorEl.classList.add('hidden');
btn.textContent = t('enterpriseShowcase.contactSent');
btn.className = btn.className.replace('bg-wm-green', 'bg-wm-card border border-wm-green text-wm-green');
} catch {
btn.textContent = t('enterpriseShowcase.contactFailed');
btn.disabled = false;
if (turnstileWidget?.dataset.widgetId && window.turnstile) {
window.turnstile.reset(turnstileWidget.dataset.widgetId);
delete turnstileWidget.dataset.token;
}
setTimeout(() => { btn.textContent = origText; }, 4000);
}
}}>
<input type="text" name="website" autoComplete="off" tabIndex={-1} aria-hidden="true" className="absolute opacity-0 h-0 w-0 pointer-events-none" />
<div className="grid grid-cols-2 gap-4">
<input type="text" name="name" placeholder={t('enterpriseShowcase.namePlaceholder')} required className="bg-wm-bg border border-wm-border rounded-sm px-4 py-3 text-sm focus:outline-none focus:border-wm-green transition-colors font-mono" />
<input type="email" name="email" placeholder={t('enterpriseShowcase.emailPlaceholder')} required className="bg-wm-bg border border-wm-border rounded-sm px-4 py-3 text-sm focus:outline-none focus:border-wm-green transition-colors font-mono" />
</div>
<span data-form-error className="hidden text-red-400 text-xs font-mono block" />
<div className="grid grid-cols-2 gap-4">
<input type="text" name="organization" placeholder={t('enterpriseShowcase.orgPlaceholder')} required className="bg-wm-bg border border-wm-border rounded-sm px-4 py-3 text-sm focus:outline-none focus:border-wm-green transition-colors font-mono" />
<input type="tel" name="phone" placeholder={t('enterpriseShowcase.phonePlaceholder')} required className="bg-wm-bg border border-wm-border rounded-sm px-4 py-3 text-sm focus:outline-none focus:border-wm-green transition-colors font-mono" />
</div>
<textarea name="message" placeholder={t('enterpriseShowcase.messagePlaceholder')} rows={4} className="w-full bg-wm-bg border border-wm-border rounded-sm px-4 py-3 text-sm focus:outline-none focus:border-wm-green transition-colors font-mono resize-none" />
<div className="cf-turnstile mx-auto" />
<button type="submit" className="w-full bg-wm-green text-wm-bg py-3 rounded-sm font-mono text-sm uppercase tracking-wider font-bold hover:bg-green-400 transition-colors">
{t('enterpriseShowcase.submitContact')}
</button>
</form>
</div>
</section>
</main>
{/* Footer */}
<footer className="border-t border-wm-border bg-[#020202] py-8 px-6 text-center">
<div className="flex flex-col md:flex-row items-center justify-between max-w-7xl mx-auto text-xs text-wm-muted font-mono">
<div className="flex items-center gap-3 mb-4 md:mb-0">
<img src="/favico/favicon-32x32.png" alt="" width="28" height="28" loading="lazy" className="rounded-full" />
<div className="flex flex-col">
<span className="font-display font-bold text-sm leading-none tracking-tight text-wm-text">WORLD MONITOR</span>
<span className="text-[9px] uppercase tracking-[2px] opacity-60 mt-0.5">by Someone.ceo</span>
</div>
</div>
<div className="flex items-center gap-6">
<a href={DASHBOARD_PATH} className="hover:text-wm-text transition-colors">Dashboard</a>
<a href="https://www.worldmonitor.app/blog/" className="hover:text-wm-text transition-colors">Blog</a>
<a href="https://www.worldmonitor.app/docs" className="hover:text-wm-text transition-colors">Docs</a>
<a href="https://status.worldmonitor.app/" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Status</a>
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">GitHub</a>
<a href="https://discord.gg/re63kWKxaz" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">Discord</a>
<a href="https://x.com/worldmonitorai" target="_blank" rel="noreferrer" className="hover:text-wm-text transition-colors">X</a>
</div>
<span className="text-[10px] opacity-40 mt-4 md:mt-0">© {new Date().getFullYear()} WorldMonitor</span>
</div>
</footer>
</div>
);
/* βββ Page Layout βββ */
export default function App() {
const [page, setPage] = useState(() => window.location.hash.startsWith('#enterprise') ? 'enterprise' : 'home');
// Initialize Dodo checkout overlay with success handler.
//
// On overlay success, the buyer needs to be bridged from /pro to the
// main dashboard where their newly-minted entitlement actually
// unlocks panels. Two changes vs the original 3-second blind reload:
//
// 1. Explicit "Go to dashboard now β" button so engaged buyers
// don't wait out the auto-redirect timer.
// 2. Auto-redirect is 1500ms (down from 3000ms) β fast enough to
// feel responsive without clipping the confirmation reading time.
// 3. Redirect target carries `?wm_checkout=success` so the dashboard
// side (handleCheckoutReturn in src/services/checkout-return.ts)
// recognizes this as a post-purchase landing and triggers the
// extended-unlock banner from PR-4, instead of rendering a
// default dashboard with no context.
useEffect(() => {
// #4449: the Dodo overlay is no longer used β checkout redirects top-level
// to the hosted page (see startCheckout). We no longer call initOverlay(),
// which dynamically imported the heavy Dodo overlay SDK on /pro mount and
// registered a success banner that can never fire (after payment the buyer
// lands on the dashboard, not /pro β handleCheckoutReturn owns that UX).
// Consume checkout intent from URL (set by afterSignInUrl on the
// checkout-initiated sign-in). No-op for any other /pro entry
// point; strips params before any await so a reload can't re-fire.
void tryResumeCheckoutFromUrl();
}, []);
useEffect(() => {
const onHash = () => {
const hash = window.location.hash;
const next = hash.startsWith('#enterprise') ? 'enterprise' : 'home';
const wasEnterprise = page === 'enterprise';
setPage(next);
if (next === 'enterprise' && !wasEnterprise) window.scrollTo(0, 0);
if (hash === '#enterprise-contact') {
setTimeout(() => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
}, wasEnterprise ? 0 : 100);
}
};
window.addEventListener('hashchange', onHash);
return () => window.removeEventListener('hashchange', onHash);
}, [page]);
useEffect(() => {
if (page === 'enterprise' && window.location.hash === '#enterprise-contact') {
setTimeout(() => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
}, 100);
}
}, []);
if (page === 'enterprise') return <EnterprisePage />;
return (
<ProEntitlementProvider>
<div className="min-h-screen selection:bg-wm-green/30 selection:text-wm-green">
<Navbar />
<main>
<Hero />
<SourceMarquee />
<Pillars />
<WhyUpgrade />
<TwoPathSplit />
<ProShowcase />
<DeliveryDesk />
<AudiencePersonas />
<SocialProof />
<LivePreview />
<PricingSection refCode={getRefCode()} />
<PricingTable />
<ApiSection />
<EnterpriseShowcase />
<FAQ />
</main>
<Footer />
</div>
</ProEntitlementProvider>
);
}
|