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
+6 -15
View File
@@ -1,5 +1,7 @@
import Link from "next/link"
import { Building2, GitFork, Mail, ExternalLink } from "lucide-react"
import { GitFork, Mail, ExternalLink } from "lucide-react"
import { Logo } from "@/components/shared/logo"
import { LEGAL_PAGES } from "@/lib/legal"
const LINKS = {
Product: [
@@ -12,14 +14,8 @@ const LINKS = {
{ label: "Dashboard", href: "/login" },
{ label: "Tenant portal", href: "/tenant-portal-info" },
{ label: "API docs", href: "/api-docs" },
{ label: "Status", href: "/status" },
],
Legal: [
{ label: "Privacy policy", href: "/privacy" },
{ label: "Terms of service", href: "/terms" },
{ label: "Cookie policy", href: "/cookie-policy" },
{ label: "GDPR", href: "/gdpr" },
],
Legal: LEGAL_PAGES.map((p) => ({ label: p.label, href: p.href })),
}
export function Footer() {
@@ -29,12 +25,7 @@ export function Footer() {
<div className="grid gap-10 sm:grid-cols-2 lg:grid-cols-5">
{/* Brand */}
<div className="lg:col-span-2">
<Link href="/" className="flex items-center gap-2 mb-4">
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-gradient-to-br from-indigo-500 to-violet-600">
<Building2 className="h-4 w-4 text-white" />
</div>
<span className="font-bold text-white">Property Management Network</span>
</Link>
<Logo size="md" className="mb-4" />
<p className="text-sm text-white/40 max-w-xs leading-relaxed">
The property management platform built for independent landlords who want simplicity, not complexity.
</p>
@@ -71,7 +62,7 @@ export function Footer() {
<div className="mt-12 flex flex-col sm:flex-row items-center justify-between gap-4 border-t border-white/[0.06] pt-8 text-xs text-white/30">
<p>© {new Date().getFullYear()} Property Management Network. All rights reserved.</p>
<p>Built with Next.js · Supabase · Stripe · Resend</p>
<p>Built with Next.js · PostgreSQL · Stripe · SMTP2GO</p>
</div>
</div>
</footer>