import { useState } from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { CheckCircle, Shield, Globe, Laptop, Server, Phone, ChevronLeft, ChevronRight } from "lucide-react"; export default function LandingPage() { // --- HERO SLIDES (5 total) --- const slides = [ { id: "overview", title: "Empowering Your Business with Smart IT & POS Solutions", description: "Atalou Microsystems delivers technology that grows with your business — from POS systems to IT infrastructure, support, and security.", image: "[Mock Image: Company Hero Banner / Logo — replace with ]", targetId: "ata-pos", // Where "Learn More" jumps for this slide }, { id: "ata-pos-hero", title: "ATA POS System", description: "An all-in-one solution to manage sales, inventory, employees, and customer loyalty — fast, simple, and secure.", image: "[Mock Image: ATA POS System — replace with ]", targetId: "ata-pos", }, { id: "ti-pos-hero", title: "Ti POS", description: "A minimal but very complete POS solution designed for small businesses and vendors.", image: "[Mock Image: Ti POS — replace with ]", targetId: "ti-pos", }, { id: "ata-center-hero", title: "ATA-Center", description: "Remote access and assistance powered by MeshCentral to deliver IT support from anywhere.", image: "[Mock Image: ATA-Center — replace with ]", targetId: "ata-center", }, { id: "sidnage-hero", title: "Sidnage", description: "Promo & info display: show images, posts, services, or restaurant menus in a presentation-style layout.", image: "[Mock Image: Sidnage — replace with ]", targetId: "sidnage", }, ]; const [currentSlide, setCurrentSlide] = useState(0); const nextSlide = () => setCurrentSlide((prev) => (prev + 1) % slides.length); const prevSlide = () => setCurrentSlide((prev) => (prev - 1 + slides.length) % slides.length); return (
{/* ================= HERO SECTION (Slider with 5 pages) ================= */}

{slides[currentSlide].title}

{slides[currentSlide].description}

{/* Image / Logo mock */}
{slides[currentSlide].image}
{/* Side Prev / Next Controls */} {/* Bottom center dots */}
{slides.map((_, i) => (
{/* ================= ATA POS Detailed Section ================= */}

Our Flagship Solution: ATA POS System

[Mock Image: ATA POS Detailed — replace with ]

An all-in-one solution to manage sales, inventory, employees, and customer loyalty — fast, simple, and secure.

{[ "Fast & secure payment processing", "Real-time inventory & expiration tracking", "Employee & shift management", "Multi-currency & multilingual support", "Customer loyalty program (points, discounts, rewards)", "Detailed reports & analytics", "Cloud & multi-device access", "Role management & security logs", "Accounting integration (Excel/QuickBooks/ACCPAC)", ].map((item, i) => ( {item} ))}
{/* ================= Ti POS Section ================= */}

Ti POS

[Mock Image: Ti POS — replace with ]

Minimal yet complete POS for small businesses and mobile vendors.

{["Quick checkout & offline-ready","Simple inventory & price lists","Receipts: print, PDF, or email","Works on low-cost devices","User roles with PIN","Basic reports & daily summaries"].map((item, i) => ( {item} ))}
{/* ================= ATA-Center Section ================= */}

ATA-Center (Remote Access & Assistance)

[Mock Image: ATA-Center — replace with ]

MeshCentral-powered remote support to access, monitor, and assist devices securely.

{["Secure remote desktop/control","Device groups & tags","Session recording & audit","File transfer & terminal","Multi-tenant ready","Alerts & basic automation"].map((item, i) => ( {item} ))}
{/* ================= Sidnage Section ================= */}

Sidnage (Digital Signage)

[Mock Image: Sidnage — replace with ]

Display promos, info slides, menus, and service highlights across one or many screens.

{["Playlist-based slideshows","Schedule by time/day","Mixed media: images & posts","Multi-screen layouts","Remote updates","Template presets for menus"].map((item, i) => ( {item} ))}
{/* ================= Services ================= */}

Our Services

{[ { title: "Support & Maintenance", items: [ "Network setup, monitoring, optimization", "Fire alarm & detection systems", "Video surveillance", "System repair & ongoing support", ], icon: Server, }, { title: "Software Support", items: [ "Technical support (CRE, OB POS, ASI Front Desk)", "Accounting systems (QuickBooks, ACCPAC)", "Antivirus & firewall protection", ], icon: Laptop, }, { title: "Network Solutions", items: [ "IP Telephony", "Structured cabling (UTP)", "Point-to-Point & Multipoint connections", ], icon: Phone, }, { title: "Web Services", items: [ "Domain registration & hosting", "Custom website & mobile app development", ], icon: Globe, }, { title: "Defense & Surveillance", items: [ "Security camera systems", "Perimeter security", "Access control & attendance systems", ], icon: Shield, }, { title: "Other Services", items: [ "Sale of IT equipment", "GPS tracking (vehicles & individuals)", "Tailored R&D solutions", ], icon: CheckCircle, }, ].map((service, i) => (

{service.title}

    {service.items.map((item, j) => (
  • {item}
  • ))}
))}
{/* ================= Why Choose Us ================= */}

Why Choose Atalou Microsystems

{["Trusted local & international IT provider","Multi-industry expertise","Dedicated support & training","Innovative & scalable technology"].map((reason, i) => ( {reason} ))}
{/* ================= CTA ================= */}

Ready to Upgrade Your Business?

Let’s design the right solution for you — from POS to IT infrastructure.

{/* ================= Footer ================= */}
); }