Consolidate audit-fixes branch: webhooks, integrations, and deploy hardening

Batch commit of the pending working tree on security/audit-fixes-2026-07.
Major areas:
- Outbound webhooks / Zapier: schema + signed delivery with retries, public
  v1 API (REST-hook subscribe/unsubscribe), settings UI, cron drain.
- Deploy hardening: email via SMTP2GO (Resend fully removed), verified DB TLS
  (DATABASE_SSL=require + DATABASE_CA), storage fails loud in production when
  Spaces is unconfigured instead of silently using ephemeral disk.
- Integrations & features (concurrent work): accounting (QuickBooks/Xero),
  e-signature (DocuSign/Dropbox Sign), PayPal, geocoding/maps, onboarding,
  expanded legal pages.
- DB migrations 0006–0009.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Leon Serfaty
2026-07-02 13:42:34 -04:00
co-authored by Claude Opus 4.8
parent 969d5d4c8a
commit c9968531e4
282 changed files with 41530 additions and 4013 deletions
+8 -8
View File
@@ -35,8 +35,8 @@ function WordReveal({ text, className = "", delay = 0 }: { text: string; classNa
{words.map((word, i) => (
<motion.span
key={i}
initial={{ opacity: 0, y: 16, filter: "blur(8px)" }}
animate={{ opacity: 1, y: 0, filter: "blur(0px)" }}
initial={{ opacity: 1, y: 16 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: delay + i * 0.08, ease: "easeOut" }}
className="inline-block mr-[0.25em]"
>
@@ -75,7 +75,7 @@ const STATS = [
function DashboardMockup() {
return (
<motion.div
initial={{ opacity: 0, y: 40, rotateX: 8 }}
initial={{ opacity: 1, y: 40, rotateX: 8 }}
animate={{ opacity: 1, y: 0, rotateX: 0 }}
transition={{ duration: 0.9, delay: 0.5, ease: [0.16, 1, 0.3, 1] }}
className="relative w-full max-w-2xl mx-auto"
@@ -206,7 +206,7 @@ export function Hero() {
<div>
{/* Badge */}
<motion.div
initial={{ opacity: 0, y: 16 }}
initial={{ opacity: 1, y: 16 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
className="mb-6 inline-flex items-center gap-2 rounded-full border border-indigo-500/30 bg-indigo-500/10 px-4 py-1.5 text-xs font-medium text-indigo-300"
@@ -229,7 +229,7 @@ export function Hero() {
</h1>
<motion.p
initial={{ opacity: 0, y: 20 }}
initial={{ opacity: 1, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: 0.8 }}
className="mt-6 text-base sm:text-lg text-white/60 leading-relaxed"
@@ -239,7 +239,7 @@ export function Hero() {
{/* CTAs */}
<motion.div
initial={{ opacity: 0, y: 20 }}
initial={{ opacity: 1, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: 1 }}
className="mt-8 flex flex-col sm:flex-row flex-wrap gap-3"
@@ -264,7 +264,7 @@ export function Hero() {
{/* Trust signals */}
<motion.div
initial={{ opacity: 0 }}
initial={{ opacity: 1 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.6, delay: 1.2 }}
className="mt-8 flex flex-wrap items-center gap-3 sm:gap-4 text-xs text-white/40"
@@ -279,7 +279,7 @@ export function Hero() {
{/* Animated stats */}
<motion.div
initial={{ opacity: 0, y: 10 }}
initial={{ opacity: 1, y: 10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: 1.3 }}
className="mt-10 grid grid-cols-2 sm:grid-cols-4 gap-4 pt-8 border-t border-white/[0.06]"