Changelog
Track our progress, discover new features, and stay updated with the latest improvements to Route Commerce.
{item.title}
{item.description}
import type { Metadata, Viewport } from "next"; import { FileText, Zap, Bug, Shield } from "lucide-react"; import Link from "next/link"; const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://routecommerce.com"; export const metadata: Metadata = { title: "Changelog — Route Commerce", description: "See what's new in Route Commerce. Track our progress, new features, and improvements to the produce wholesale platform.", keywords: ["changelog", "product updates", "new features", "Route Commerce release notes", "software updates"], authors: [{ name: "Route Commerce" }], creator: "Route Commerce", publisher: "Route Commerce", openGraph: { title: "Changelog — Route Commerce", description: "See what's new in Route Commerce. Track our progress and new features.", url: `${BASE_URL}/changelog`, siteName: "Route Commerce", locale: "en_US", type: "website", }, alternates: { canonical: `${BASE_URL}/changelog`, }, robots: { index: true, follow: true, }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 5, }; const CHANGELOG = [ { version: "2.4.0", date: "2025-01-15", category: "feature", title: "Harvest Reach Email Campaigns", description: "Send beautiful email campaigns to your customers. Includes templates, scheduling, and analytics.", icon: FileText, }, { version: "2.3.0", date: "2025-01-08", category: "feature", title: "Square Inventory Sync", description: "Keep your product catalog and inventory in sync with Square POS. Import products, push updates automatically.", icon: Zap, }, { version: "2.2.2", date: "2024-12-20", category: "improvement", title: "Faster Dashboard Loading", description: "Dashboard now loads 40% faster with improved caching and lazy loading of components.", icon: Zap, }, { version: "2.2.1", date: "2024-12-15", category: "bug", title: "Order Export Fix", description: "Fixed an issue where order export would fail for orders with more than 50 items.", icon: Bug, }, { version: "2.2.0", date: "2024-12-10", category: "feature", title: "AI Intelligence Pack", description: "New AI-powered features: Campaign Writer, Pricing Advisor, and Demand Forecasting. Available on Enterprise plan.", icon: Zap, }, { version: "2.1.0", date: "2024-11-28", category: "feature", title: "Water Log Module", description: "Track irrigation and water usage for your fields. Generate reports and monitor sustainability metrics.", icon: Zap, }, { version: "2.0.0", date: "2024-11-15", category: "improvement", title: "New Admin Dashboard", description: "Complete redesign of the admin dashboard with improved navigation, faster loading, and better mobile support.", icon: Zap, }, { version: "1.9.0", date: "2024-10-30", category: "security", title: "Two-Factor Authentication", description: "Added 2FA support for enhanced account security. Admin users can now enable TOTP-based authentication.", icon: Shield, }, ]; const categoryStyles = { feature: { bg: "bg-emerald-100", text: "text-emerald-700", label: "New Feature" }, improvement: { bg: "bg-blue-100", text: "text-blue-700", label: "Improvement" }, bug: { bg: "bg-amber-100", text: "text-amber-700", label: "Bug Fix" }, security: { bg: "bg-purple-100", text: "text-purple-700", label: "Security" }, }; export default function ChangelogPage() { return (
Track our progress, discover new features, and stay updated with the latest improvements to Route Commerce.
{item.description}