import { useState } from "react";
import { CheckCircle2, Phone, ShieldCheck, ClipboardCheck, Truck, HardHat, FileText, BadgeCheck, ChevronRight, Lock, Star, MessageCircle, PlayCircle, Building2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
// Brand palette
const brand = {
red: "#FF0000",
gray: "#e0e0e0",
dark: "#111111",
};
export default function SafetyComplianceTrackerMock() {
const [form, setForm] = useState({ name: "", company: "", email: "", phone: "", message: "" });
const onChange = (e) => setForm({ ...form, [e.target.name]: e.target.value });
return (
{text}
);
}
function FaqItem({ q, a }: { q: string, a: string }){
const [open, setOpen] = useState(false);
return (
{/* Announcement bar */}
{/* Hero */}
Compliance, organized.
SOC‑ready security
U.S.‑based support
{/* Product mock screenshot */}
{/* Social proof */}
{/* Feature buckets */}
Compliance & Audits
Personnel & Training
Fleet & Maintenance
{/* Solutions stripes */}
{/* Testimonial */}
{/* Lead capture */}
{/* Pricing */}
{/* Resources */}
{/* FAQ */}
{/* Footer */}
);
}
function FeatureItem({ text }: { text: string }) {
return (
New: OSHA/DOT deadline assistants now in beta — never miss a compliance date again.
{/* Header */}
Safety Compliance Tracker
DOT • OSHA • Fleet • Training
Ditch spreadsheets. Never miss a compliance deadline again.
One secure platform to manage DOT & OSHA requirements, fleet maintenance, training records, and audits — with reminders, dashboards, and built‑in checklists.
dashboard.sctportal.com
{["Open DOT Tasks","Expiring Med Cards","Vehicle Inspections","Incidents YTD"].map((k,i)=> (
{k}
))}
{[7,12,38,2][i]}
Auto‑reminders
Dashboard chart placeholder
Trusted by safety‑first teams
{["Acme Logistics","North Star Hauling","Pioneer Energy","Atlas Fleet","Canyon Materials","Summit Services"].map((n,i)=> (
{n}
))}
Everything you need for compliance
Organized into clear modules so your team can move fast and stay audit‑ready.
{[
{title: "For Fleet Operators", points: ["Keep vehicles road‑ready","Track DVIRs & PM","Instant audit exports"], icon: },
{title: "For Safety Managers", points: ["All compliance in one place","Proactive reminders","Role‑based access"], icon: },
{title: "For Executives", points: ["Single‑pane dashboards","Trend reports","Lower risk & cost"], icon: },
].map((s, i)=> (
{s.icon}{s.title}
))}
-
{s.points.map((p, j)=> (
{p}
))}
“SCT centralized our DOT, OSHA, and fleet maintenance — we cut audit prep from weeks to hours and haven’t missed a renewal since.”
— Taylor R., Safety Director at Pioneer Energy
See SCT in action
Request a personalized walkthrough. We’ll tailor the demo to your compliance needs and data.
30‑minute live demo Sample dashboards & exports No obligation — no credit card
Simple pricing
Transparent tiers with everything you need. Custom plans available for large fleets and multi‑site organizations.
{[
{name: "Starter", price: "$99", per: "/mo", features: ["Up to 25 employees","Basic dashboards","Email reminders"]},
{name: "Professional", price: "$299", per: "/mo", features: ["Up to 100 employees","All modules","API access","Priority support"], highlight: true},
{name: "Enterprise", price: "Let's talk", per: "", features: ["Unlimited employees","SSO & advanced security","Custom integrations","Dedicated CSM"]},
].map((tier, i)=> (
{tier.name}
{tier.highlight && Most popular}
))}
{tier.price}
{tier.per}
-
{tier.features.map((f,j)=> (
{f}
))}
Free resources
{[
{title: "DOT Compliance Checklist (PDF)", desc: "A practical, printable checklist to stay audit‑ready."},
{title: "OSHA Incident Reporting Guide", desc: "Know what to file and when."},
{title: "Fleet PM Template (Excel)", desc: "Keep every vehicle on schedule."},
].map((r, i)=> (
{r.title}
))}
{r.desc}
Frequently asked questions
{open &&
);
}
{a}
}