"use client" import { Phone, Users, VoicemailIcon, Radio, MoreHorizontal, Network, Bot, LayoutDashboard } from 'lucide-react' import Link from 'next/link' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' const features = [ { name: 'Free Dial-in and Out', description: 'Call using +1 (610) LITENET / +1 (610) 548 3638', icon: Phone, color: 'blue', }, { name: 'Conference Rooms', description: 'Host or join conference calls with multiple participants', icon: Users, color: 'green', }, { name: 'Voicemail', description: 'Set up your own private voicemail and receive messages from anyone', icon: VoicemailIcon, color: 'purple', }, { name: 'Intercom and Paging', description: 'Easily communicate with other extensions and page groups', icon: Radio, color: 'orange', }, { name: <>Access to AstroCom, description: <>Dial directly to AstroCom straight from your LiteNet extension!, icon: Network, color: 'cyan', }, { name: 'Discord Bot', description: 'Quickly create your own extension, manage page groups, and view Call Detail Records', icon: Bot, color: 'indigo', }, { name: 'Web Dashboard', description: 'Log in to the Web Dashboard to manage your account and settings', icon: LayoutDashboard, color: 'pink', }, { name: 'And More!', description: 'We\'re always adding new features to LiteNet!', icon: MoreHorizontal, color: 'gray', }, ] const colorClasses = { blue: 'bg-blue-600/20 border-blue-600/30 text-blue-400 group-hover:bg-blue-600/30', green: 'bg-green-600/20 border-green-600/30 text-green-400 group-hover:bg-green-600/30', purple: 'bg-purple-600/20 border-purple-600/30 text-purple-400 group-hover:bg-purple-600/30', orange: 'bg-orange-600/20 border-orange-600/30 text-orange-400 group-hover:bg-orange-600/30', cyan: 'bg-cyan-600/20 border-cyan-600/30 text-cyan-400 group-hover:bg-cyan-600/30', indigo: 'bg-indigo-600/20 border-indigo-600/30 text-indigo-400 group-hover:bg-indigo-600/30', pink: 'bg-pink-600/20 border-pink-600/30 text-pink-400 group-hover:bg-pink-600/30', gray: 'bg-gray-600/20 border-gray-600/30 text-gray-400 group-hover:bg-gray-600/30', } export default function Features() { return (

Everything You Need

A comprehensive suite of features for a complete PBX experience, designed to keep you connected with your community.

{features.map((feature, index) => ( {/* Animated background gradient */}
{feature.name}

{feature.description}

{/* Hover glow effect */}
))}
) }