import type { Metadata, Viewport } from "next"; import Link from "next/link"; const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://routecommerce.com"; export const metadata: Metadata = { title: "Security — Route Commerce", description: "Learn about Route Commerce security practices, data protection, and compliance. Enterprise-grade encryption and SOC 2 compliance.", keywords: ["security", "data protection", "encryption", "SOC 2", "GDPR", "CCPA", "Route Commerce security", "compliance"], authors: [{ name: "Route Commerce" }], creator: "Route Commerce", publisher: "Route Commerce", openGraph: { title: "Security — Route Commerce", description: "Learn about Route Commerce security practices, data protection, and compliance.", url: `${BASE_URL}/security`, siteName: "Route Commerce", locale: "en_US", type: "website", }, alternates: { canonical: `${BASE_URL}/security`, }, robots: { index: true, follow: true, }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 5, }; // Module-level constant for the copyright year. Evaluated once per // server render (module scope), so the footer string is a static value // — avoids hydration mismatch from `new Date()` in JSX. const CURRENT_YEAR = new Date().getFullYear(); const SECURITY_FEATURES = [ { title: "Bank-Level Encryption", description: "All data is encrypted in transit using TLS 1.3 and at rest using AES-256 encryption.", icon: "🔒", }, { title: "SOC 2 Compliant", description: "Our infrastructure meets SOC 2 Type II standards for security, availability, and confidentiality.", icon: "✓", }, { title: "Regular Security Audits", description: "We conduct quarterly penetration tests and annual security audits with certified third parties.", icon: "🔍", }, { title: "99.9% Uptime SLA", description: "Enterprise plan customers receive a 99.9% uptime guarantee with 24/7 monitoring.", icon: "⚡", }, { title: "GDPR & CCPA Compliant", description: "We comply with GDPR and CCPA regulations, giving you full control over your data.", icon: "🛡", }, { title: "Secure Authentication", description: "Supabase Auth provides secure, compliant authentication with 2FA support.", icon: "🔑", }, ]; const TRUST_BADGES = [ { label: "SSL Secured", icon: "🔒" }, { label: "SOC 2 Compliant", icon: "✓" }, { label: "GDPR Ready", icon: "🛡" }, { label: "PCI Compliant", icon: "💳" }, ]; export default function SecurityPage() { return (
{/* Header */}
Route Commerce Get Started
{/* Trust Badges */}
{TRUST_BADGES.map((badge) => (
{badge.icon} {badge.label}
))}
{/* Hero */}

Your Data is Safe with Us

Route Commerce is built on enterprise-grade infrastructure with security at every layer. We protect your business data with the same rigor used by Fortune 500 companies.

{/* Security Features */}

Enterprise-Grade Security

{SECURITY_FEATURES.map((feature) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Infrastructure */}

Built on Trusted Infrastructure

We partner with industry-leading providers to ensure the highest levels of reliability and security.

V

Vercel

Edge network with automatic DDoS protection and global CDN

S

Supabase

PostgreSQL database with built-in encryption and real-time capabilities

$

Stripe

PCI-compliant payment processing with advanced fraud detection

Payment Security

Your payment data is handled by Stripe, who is PCI DSS Level 1 certified. We never store your card details.

  • 256-bit SSL encryption
  • PCI DSS Level 1 compliant
  • Advanced fraud detection
  • Secure card tokenization
{/* Privacy Compliance */}

Privacy Compliance

GDPR Compliant

We comply with the General Data Protection Regulation. You can export, delete, or transfer your data at any time.

CCPA Ready

We honor California Consumer Privacy Act rights, including the right to know, delete, and opt-out of the sale of data.

{/* Report Vulnerability */}

Found a Security Issue?

We take security seriously. If you've discovered a vulnerability, please let us know so we can address it promptly.

Report Vulnerability
{/* Footer */}
); }