/pricing and the homepage teaser rendered the $0/$79/Custom catalog from lib/billing.ts with a below-the-fold disclaimer. Board minutes #42 ratified Gate A: no price on a public surface until the model is ratified and the entitlements exist — a false price anchor with a footnote is worse than no price. The page has been live in breach since ratification (server-26#46). - /pricing: no numbers, no plan cards, no interval toggle. "Pricing is in development", CTA to the existing /waitlist request-access page. - homepage: pricing teaser replaced with the same message; PLANS import gone. - homepage CTAs pointed at /login, which has no signup path — a real visitor could not create an account. Now /waitlist ("Request access"); the secondary CTA is honestly labelled "Sign in". - lib/billing.ts: plan catalog header now states the prices are invented and that retention/SSO/SLA have no backend, so the next person to import PLANS is warned at the definition site. Refs server-26#46, server-26#62. Authenticated /settings/billing is unchanged and still stubbed — not a public price surface, stays with #46. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
150 lines
6.8 KiB
TypeScript
150 lines
6.8 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { LinkButton } from "@/components/ui/Button";
|
|
import { Card } from "@/components/ui/Card";
|
|
import { Badge } from "@/components/ui/Badge";
|
|
import { useAuth } from "@/components/AuthProvider";
|
|
import { LiveView } from "@/components/LiveView";
|
|
|
|
const CAPABILITIES = [
|
|
{
|
|
title: "Incidents, not raw calls",
|
|
body: "Individual transmissions are correlated into a single incident — a pursuit becomes a path through every checkin point, a structure fire becomes a pin at the dispatched address.",
|
|
},
|
|
{
|
|
title: "AI transcription & extraction",
|
|
body: "Every call is transcribed and scanned for units, vehicles, and locations, so an incident page reads like a briefing instead of a call log.",
|
|
},
|
|
{
|
|
title: "Live map, full history",
|
|
body: "Watch what's happening right now, or scrub back through history to see how an incident unfolded call by call.",
|
|
},
|
|
{
|
|
title: "Field SDR nodes",
|
|
body: "Lightweight edge nodes decode P25 and analog police/fire traffic and stream it to your account — deploy one node or a whole regional network.",
|
|
},
|
|
{
|
|
title: "Discord voice relay",
|
|
body: "Pipe live radio audio into a Discord channel so your team can listen along in real time, no separate scanner app required.",
|
|
},
|
|
{
|
|
title: "Role-scoped access",
|
|
body: "Admins, operators scoped to the nodes they own, and read-only viewers — invite your team with the access level that fits.",
|
|
},
|
|
];
|
|
|
|
const STEPS = [
|
|
{ n: "01", title: "Deploy a node", body: "Point a field SDR node at your local P25 or analog system. It streams decoded audio to your DRB account over the network." },
|
|
{ n: "02", title: "We transcribe & correlate", body: "Calls are transcribed, entities are extracted, and related calls are correlated into incidents automatically." },
|
|
{ n: "03", title: "Your team watches", body: "Incidents show up on the live map and dashboard with an AI summary, units on scene, and every related recording." },
|
|
];
|
|
|
|
function MarketingHomePage() {
|
|
return (
|
|
<div>
|
|
{/* Hero */}
|
|
<section className="marketing-hero-bg">
|
|
<div className="max-w-screen-xl mx-auto px-4 md:px-6 pt-20 pb-24 md:pt-28 md:pb-32">
|
|
<div className="max-w-3xl">
|
|
<Badge tone="brand">Public-safety radio intelligence</Badge>
|
|
<h1 className="text-display-sm md:text-display mt-5 text-white">
|
|
See what's happening on the radio, as an incident — not a wall of calls.
|
|
</h1>
|
|
<p className="text-gray-400 text-base md:text-lg mt-5 max-w-2xl leading-relaxed">
|
|
DRB turns field SDR nodes into a live public-safety picture: police/fire radio is decoded, transcribed,
|
|
and correlated into incidents you can watch on a map or scrub back through in history — with a Discord
|
|
bot to relay the audio live to your team.
|
|
</p>
|
|
<div className="flex flex-wrap items-center gap-3 mt-8">
|
|
<LinkButton href="/waitlist" size="lg">Request access</LinkButton>
|
|
<LinkButton href="/login" variant="secondary" size="lg">Sign in</LinkButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* Capabilities */}
|
|
<section className="max-w-screen-xl mx-auto px-4 md:px-6 py-16 md:py-20">
|
|
<div className="max-w-2xl mb-10">
|
|
<h2 className="text-display-sm text-white">The unit of value is the incident</h2>
|
|
<p className="text-gray-400 mt-3">
|
|
A scanner feed is noise. DRB's job is to turn that noise into a small number of things you actually care
|
|
about — and let you click into any one of them for the full picture.
|
|
</p>
|
|
</div>
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-5">
|
|
{CAPABILITIES.map((c) => (
|
|
<Card key={c.title} padding="lg" hover>
|
|
<h3 className="text-white font-semibold">{c.title}</h3>
|
|
<p className="text-gray-400 text-sm mt-2 leading-relaxed">{c.body}</p>
|
|
</Card>
|
|
))}
|
|
</div>
|
|
</section>
|
|
|
|
{/* How it works */}
|
|
<section className="border-t border-gray-800">
|
|
<div className="max-w-screen-xl mx-auto px-4 md:px-6 py-16 md:py-20">
|
|
<h2 className="text-display-sm text-white mb-10">How it works</h2>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
{STEPS.map((s) => (
|
|
<div key={s.n}>
|
|
<p className="text-indigo-400 font-mono text-sm font-bold">{s.n}</p>
|
|
<h3 className="text-white font-semibold mt-2">{s.title}</h3>
|
|
<p className="text-gray-400 text-sm mt-2 leading-relaxed">{s.body}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* Pricing — Gate A (minutes #42/#62): no price on a public surface. */}
|
|
<section className="border-t border-gray-800">
|
|
<div className="max-w-screen-xl mx-auto px-4 md:px-6 py-16 md:py-20">
|
|
<div className="flex flex-col md:flex-row md:items-end justify-between gap-4">
|
|
<div>
|
|
<h2 className="text-display-sm text-white">Pricing is in development</h2>
|
|
<p className="text-gray-400 mt-2 max-w-xl">
|
|
We would rather talk to you about what you need than post a number we would have to
|
|
walk back. Tell us about your coverage area and we will figure it out together.
|
|
</p>
|
|
</div>
|
|
<Link href="/pricing" className="text-indigo-400 hover:text-indigo-300 text-sm font-mono transition-colors shrink-0">
|
|
More on pricing →
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* Final CTA */}
|
|
<section className="border-t border-gray-800">
|
|
<div className="max-w-screen-xl mx-auto px-4 md:px-6 py-16 md:py-20 text-center">
|
|
<h2 className="text-display-sm text-white">Bring your first node online</h2>
|
|
<p className="text-gray-400 mt-3 max-w-xl mx-auto">
|
|
Tell us about your coverage area. We will get you a node online and you will see incidents within minutes of your first call.
|
|
</p>
|
|
<div className="mt-8">
|
|
<LinkButton href="/waitlist" size="lg">Request access</LinkButton>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* "/" is marketing for a signed-out visitor and Live (the map) for anyone
|
|
* signed in — see UI_REDESIGN.md §3, "the map is the home screen". A user
|
|
* with no org_id yet still sees marketing (unchanged — that's the
|
|
* pre-redesign behaviour for an unprovisioned account, out of scope here;
|
|
* ChromeSwitcher's own no-claim guard only fires off marketing paths).
|
|
*/
|
|
export default function HomePage() {
|
|
const { user, loading, orgId } = useAuth();
|
|
|
|
if (loading) return null;
|
|
if (user && orgId) return <LiveView />;
|
|
return <MarketingHomePage />;
|
|
}
|