'use client'; import React, { useState } from 'react'; import FaqHeroBg from '@/assets/faq/hero-bg.jpg'; import Image from 'next/image'; import { motion, AnimatePresence } from 'framer-motion'; import Navbar from '@/components/Navbar'; import Footer from '@/components/Footer'; import { Plus, Minus, Search, ChevronDown, ChevronUp } from 'lucide-react'; // FAQ Data Structure const faqCategories = [ { id: 'general', label: 'General' }, { id: 'features', label: 'Features' }, { id: 'pricing', label: 'Pricing' }, { id: 'technical', label: 'Technical' }, { id: 'support', label: 'Support' }, ]; const faqData = { general: [ { question: "What is Dine360?", answer: "Dine360 is an all-in-one restaurant management platform that helps restaurants manage orders, billing, inventory, reservations, kitchen workflows, and analytics from a single system." }, { question: "What types of restaurants can use Dine360?", answer: "Dine360 is designed for all restaurant formats including fast food outlets, cafés, bakeries, food trucks, ghost kitchens, fine dining restaurants, and multi-branch restaurant chains." }, { question: "Is Dine360 suitable for small restaurants?", answer: "Yes. Dine360 is built to scale from small cafés and quick-service restaurants to large multi-location restaurant businesses." }, { question: "Can Dine360 manage multiple branches?", answer: "Yes. Dine360 supports multi-branch restaurants with centralized dashboards, branch-wise reports, and unified operational control." } ], features: [ { question: "What features does Dine360 offer?", answer: "Dine360 includes essential restaurant management tools such as POS billing, kitchen display system (KDS), table reservations, inventory management, sales analytics, CRM, purchase management, and delivery integrations." }, { question: "Does Dine360 support kitchen display systems (KDS)?", answer: "Yes. Dine360 provides a real-time Kitchen Display System that sends orders directly from the POS to the kitchen screen, improving speed and reducing errors." }, { question: "Can I manage table reservations with Dine360?", answer: "Yes. The table reservation system allows you to track reservations, manage walk-ins, view table availability, and control seating from a visual floor layout." }, { question: "Does Dine360 track inventory automatically?", answer: "Yes. Inventory levels update automatically as orders are processed, helping you track ingredients and receive low-stock alerts." } ], pricing: [ { question: "How much does Dine360 cost?", answer: "Dine360 offers flexible pricing plans designed for restaurants of different sizes. Pricing varies depending on the number of users, branches, and advanced features required." }, { question: "Is there a free trial?", answer: "Yes. Dine360 offers a free trial so restaurants can explore the platform and test its features before choosing a subscription plan." }, { question: "Are there any setup fees?", answer: "In most cases, there are no hidden setup costs. Our team assists with onboarding to ensure a smooth implementation." } ], technical: [ { question: "Does Dine360 work on tablets and desktops?", answer: "Yes. Dine360 is cloud-based and works on desktops, tablets, and compatible POS devices." }, { question: "Does the POS work if the internet goes down?", answer: "Yes. Dine360 includes offline functionality so your POS continues running even if the internet connection temporarily drops." }, { question: "Is restaurant data secure?", answer: "Yes. Dine360 uses secure cloud infrastructure and encrypted data storage to protect restaurant and customer information." } ], support: [ { question: "What kind of support does Dine360 provide?", answer: "Dine360 offers dedicated customer support including onboarding assistance, technical help, and system training." }, { question: "Is training provided for staff?", answer: "Yes. Our onboarding team provides training to ensure your staff can quickly learn and use the system efficiently." }, { question: "How can I contact support?", answer: "You can contact the Dine360 support team through email, phone, or the support portal available inside the platform." }, { question: "Can I request a product demo?", answer: "Yes. You can request a live demo to see how Dine360 works and how it can improve your restaurant operations." } ] }; const FAQPage = () => { const [activeCategory, setActiveCategory] = useState('general'); const [openQuestionIndex, setOpenQuestionIndex] = useState(0); const toggleQuestion = (index: number) => { setOpenQuestionIndex(openQuestionIndex === index ? null : index); }; return (
{/* Hero Section with Background Image */}
FAQ Background
Frequently Asked Questions Find answers to common questions about Dine360’s features, setup, pricing, and support to help you get started quickly.
{/* Content Section */}
{/* Category Tabs - Hidden if only one category */} {faqCategories.length > 1 && (
{faqCategories.map((category) => ( ))}
)} {/* Accordion Questions */}
{(faqData[activeCategory as keyof typeof faqData] || []).map((item, index) => (
{openQuestionIndex === index && (
{item.answer}
)}
))}
{/* Contact CTA */}

Can't find what you're looking for?

Contact Support
); }; export default FAQPage;