"use client"; import React from 'react'; import { motion } from 'framer-motion'; import { Check, X, ArrowRight } from 'lucide-react'; import Link from 'next/link'; const ComparisonSection = () => { const comparisonData = [ { feature: "Hardware Cost", dine360: "$0", dine360Sub: "(Use your own)", others: "$2,000 – $5,000", othersSub: "" }, { feature: "Monthly License", dine360: "1 Flat Fee", dine360Sub: "", others: "$150+ / mo", othersSub: "" }, { feature: "Extra Tablet Fee", dine360: "$0", dine360Sub: "", others: "$50 / mo per tablet", othersSub: "" }, { feature: "Employee Fee", dine360: "$0", dine360Sub: "", others: "$20 / mo per user", othersSub: "" } ]; return (
{/* Header */}
Dine 360 vs. Legacy POS

Why Dine 360 wins
every single time.

No hidden fees. No hardware trap. Just one flat price that makes luxury POS vendors very uncomfortable.

{/* Table Container */}
{/* Table Header */}
Feature
Dine 360
Others
{/* Comparison Rows */} {comparisonData.map((item, index) => ( {/* Feature Name */}
{item.feature}
{/* Dine 360 Value */}
{item.dine360}
{item.dine360Sub && ( {item.dine360Sub} )}
{/* Others Value */}
{item.others}
))} {/* Always Included Row */}
Use your own hardware
Always included
Not available
{/* Footer Text & CTA */}

Stop overpaying. Switch to Dine 360 and
keep every dollar where it belongs.

Get Started Free
); }; export default ComparisonSection;