"use client"; import React from 'react'; import { motion } from 'framer-motion'; import { Check, ArrowRight } from 'lucide-react'; import Navbar from '@/components/Navbar'; import Footer from '@/components/Footer'; const PricingPageVersionTwo = () => { return (
{/* Decorative Background Text "PRICING" */}
PRICING
{/* Section Header */}
Transparent Pricing

Simple Plans for
Every Restaurant

Affordable, scalable restaurant management tools designed to grow with your business — whether you run one outlet or many.

{/* Pricing Card */}
Starter

Single Outlet

Perfect for independent restaurants getting started with smart POS.

Starting at
$ 200

per month · flat fee

    {[ "Unlimited tablets — no extra charge", "Unlimited staff accounts", "Use your own hardware", "Core POS & order management" ].map((feature, i) => (
  • {feature}
  • ))}
{/* Feature List Bottom */}
{[ "No hardware costs", "No per-tablet fees", "No per-user charges", "Cancel anytime" ].map((item, idx) => (
{item} {idx < 3 &&
}
))}
); }; export default PricingPageVersionTwo;