'use client' import Link from '@/components/ui/Link' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Server, Mail, Github, Twitter, Linkedin } from 'lucide-react' import { Logo } from '@/components/Logo' export function Footer() { const footerSections = [ { title: 'Hosting', links: [ { name: 'VPS Hosting', href: '/services' }, { name: 'Kubernetes', href: '/services' }, { name: 'Control Panels', href: '/services' }, { name: 'VPN Services', href: '/services' }, ], }, { title: 'Developer Services', links: [ { name: 'SMTP Services', href: '/services' }, { name: 'Database Hosting', href: '/services' }, { name: 'API Services', href: '/services' }, { name: 'Consulting', href: '/services' }, ], }, { title: 'Web Tools', links: [ { name: 'Speech-to-Text', href: '/tools' }, { name: 'Image Resize', href: '/tools' }, { name: 'Text-to-Speech', href: '/tools' }, { name: 'API Access', href: '/tools' }, ], }, { title: 'Company', links: [ { name: 'About Us', href: '/about' }, { name: 'Contact', href: '/contact' }, { name: 'Legal Agreement', href: '/legal-agreement' }, { name: 'Privacy Policy', href: '/privacy' }, ], }, ] const socialLinks = [ { icon: Twitter, href: '#', label: 'Twitter' }, { icon: Github, href: '#', label: 'GitHub' }, { icon: Linkedin, href: '#', label: 'LinkedIn' }, ] return ( ) }