'use client'; import Image from 'next/image'; import { motion } from 'framer-motion'; import Link from 'next/link'; const features = [ { category: "POS", title: "Smart POS System", description: "Running your restaurant is now easier with a multi-functional POS system. It helps you manage every part of the counter experience.", points: [ "Lightning-fast billing", "Dine-in, takeaway & delivery support", "Split bills & multiple payment methods", "Real-time sales reports" ], image: "https://images.unsplash.com/photo-1556742044-3c52d6e88c62?q=80&w=2070", link: "/features/pos-management" }, { category: "Order Management", title: "Order Management", description: "Ensure every order is tracked, updated, and handled swiftly. No delays. No mistakes. Just smooth operations.", points: [ "Track all orders in one dashboard", "Kitchen display integration", "Reduce human errors", "Improve preparation time" ], image: "https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?q=80&w=2070", link: "/features/order-management" }, { category: "Table & Reservation", title: "Table & Reservation Management", description: "Take charge of your floor’s seating and reservations with a smart, easy-to-use system that saves time and increases efficiency.", points: [ "Digital table layout", "Pre-booking system", "Walk-in management", "Reduce waiting chaos" ], image: "https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070", link: "/features/table-reservation" }, { category: "QR Code Menu", title: "QR Code Menu", description: "Simplify your ordering process and watch your sales grow with our effective QR code menu features.", points: [ "Contactless digital menu", "Easy updates", "No reprinting costs", "Faster ordering experience" ], image: "https://images.unsplash.com/photo-1513151233558-d860c5398176?q=80&w=2144", link: "/features/qr-code-menu" }, { category: "Inventory Management", title: "Inventory Management", description: "Maximize efficiency with a system that simplifies the complexities of inventory management.", points: [ "Real-time stock tracking", "Low-stock alerts", "Ingredient-level tracking", "Reduce wastage & theft" ], image: "https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=2074", link: "/features/inventory-management" }, { category: "Multi-Branch Control", title: "Multi-Branch Control", description: "Manage your restaurant empire from a single location with centralized branch management tools.", points: [ "Manage multiple outlets from one dashboard", "Centralized reporting", "Branch performance comparison" ], image: "https://images.unsplash.com/photo-1546241072-48010ad2862c?q=80&w=1974", link: "/features/multi-menu-management" }, { category: "Promotions", title: "Marketing & Promotions", description: "Boost your sales with targeted marketing campaigns and automated promotional tools designed for restaurants.", points: [ "Create custom discount codes", "Schedule happy hour deals", "Automated SMS/Email marketing", "Track campaign performance" ], image: "https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=2074", link: "/features/promotions" }, { category: "Website & Ordering", title: "Website & Online Ordering", description: "Take direct orders from your own branded website and reduce dependency on expensive third-party apps.", points: [ "Custom branded restaurant website", "Direct commission-free ordering", "Real-time menu sync", "Mobile-optimized experience" ], image: "https://images.unsplash.com/photo-1522199755839-a2bacb67c546?q=80&w=2072", link: "/features/restaurant-website" }, { category: "Business Dashboard", title: "Advanced Business Dashboard", description: "Make data-driven decisions with a comprehensive dashboard that gives you a 360-degree view of your business.", points: [ "Real-time revenue tracking", "Sales trends & analytics", "Staff performance metrics", "Exportable financial reports" ], image: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2026", link: "/features/business-dashboard" } ]; const FeaturesSection = () => { return (
{/* Decorative Background Elements */}
{/* Section Header */} The Complete Restaurant Toolkit

Reimagine Restaurant Management

with Powerful Features

Our restaurant management platform offers powerful tools to automate operations, improve workflows, and ensure a better dining experience for your customers.

{/* Features List */}
{features.map((feature, index) => ( {/* Image Side */}
{/* Placeholder image overlay */}
{feature.title} {/* Corner Decorations */}
{[...Array(9)].map((_, i) => (
))}
{/* Text Side */}
{feature.category}

{feature.title}

{feature.description}

    {feature.points.map((point, i) => ( {point} ))}
Get Started Now
))}
); }; export default FeaturesSection;