import Image from "next/image"; import GlowTop from "@/public/images/glow-top.svg"; import { Eye, Unplug, Compass, Zap } from "lucide-react"; export const Features: React.FC = () => { const features = [ { icon: Unplug, name: "Effortless Consolidation", description: "Consolidate all tickets from multiple platforms and clients effortlessly", }, { icon: Eye, name: "Unparalleled Visibility", description: "Gain complete control and visibility over your ticketing operations", }, { icon: Compass, name: "Intuitive Navigation", description: "Seamlessly navigate and find tickets with smart filters and advanced search", }, { icon: Zap, name: "Enhanced Efficiency", description: "Maximize productivity and resource allocation in ticket management", }, ]; return (
{/* Section content */}
{/* Content */}
{/* Content #1 */}
Centralized view of all tickets

Reduce Context Switching

Empower your operations teams with by consolidating all ticket information in one place. Seamlessly filter, sort, and customize ticket views to meet their unique needs.

{features.map((feature) => (

{feature.name}

{feature.description}

))}
App screenshot
); };