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: "Privacy Policy — Route Commerce", description: "Privacy Policy for Route Commerce platform. Learn how we collect, use, and protect your personal information.", keywords: ["privacy policy", "data protection", "GDPR", "CCPA", "Route Commerce privacy", "personal information"], authors: [{ name: "Route Commerce" }], creator: "Route Commerce", publisher: "Route Commerce", openGraph: { title: "Privacy Policy — Route Commerce", description: "Learn how Route Commerce collects, uses, and protects your personal information.", url: `${BASE_URL}/privacy-policy`, siteName: "Route Commerce", locale: "en_US", type: "website", }, alternates: { canonical: `${BASE_URL}/privacy-policy`, }, robots: { index: true, follow: true, }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 5, }; export default function PrivacyPolicyPage() { return (
{/* Header */}
Route Commerce Back to Home
Back to Home

Legal

Privacy Policy

Last updated: {new Date().toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric" })}

Your privacy matters to us. This Privacy Policy explains how Route Commerce collects, uses, and protects your information when you use our platform.

Information We Collect

We collect information you provide directly, such as when you create an account, place an order, or contact us. This includes:

  • Name, email address, and phone number
  • Billing and shipping addresses
  • Payment information
  • Order history and preferences

How We Use Your Information

We use the information we collect to:

  • Process and fulfill orders
  • Communicate with you about your orders
  • Provide customer support
  • Improve our services
  • Send marketing communications (with your consent)

Data Security

We implement appropriate technical and organizational measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction.

Third-Party Services

We may share your information with third-party service providers who assist us in operating our platform, including payment processors and shipping carriers. These providers are contractually obligated to protect your information.

Your Rights

You have the right to access, update, or delete your personal information. Contact us at privacy@routecommerce.com to exercise these rights.

Cookies

We use cookies to enhance your browsing experience. You can control cookie preferences through your browser settings.

Contact Us

If you have questions about this Privacy Policy, please contact us at:

Route Commerce

Email: privacy@routecommerce.com

{/* Footer */}
); }