"use client"; import { useState, useEffect } from "react"; import Link from "next/link"; import Image from "next/image"; import { ArrowRight, ShieldCheck, Cloud, Lightbulb, Rocket, Settings } from "lucide-react"; import { Button } from "@/components/ui/button"; import { PlaceHolderImages } from "@/lib/placeholder-images"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, } from "@/components/ui/carousel"; export default function Home() { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); const partnerLogos = PlaceHolderImages.filter(img => img.id.startsWith("partner-")); const services = [ { icon: , title: "IT Consulting & Implementation", shortDescription: "Expert advisory and end-to-end implementation to align technology with your business goals.", fullDescription: "We provide expert advisory, planning, and end-to-end IT implementation services to align technology with your business goals and drive digital transformation. Our strategic roadmaps ensure long-term scalability and ROI.", image: "/itc.jpg" }, { icon: , title: "Data Center Infrastructure", shortDescription: "Consult, design, and modernize robust data center environments for high performance.", fullDescription: "We consult, design, build, and modernize robust data center environments, ensuring high performance, scalability, and optimized IT assets. Our focus is on resilience, energy efficiency, and future-proof architecture.", image: "/datacenter.PNG" }, { icon: , title: "Enterprise Security Solutions", shortDescription: "Comprehensive security strategies to protect organizations and ensure business continuity.", fullDescription: "We deliver comprehensive security strategies and infrastructure to protect organizations from modern threats and ensure business continuity. From zero-trust architecture to real-time threat detection, we secure your perimeter and data.", image: "/security.jpg" }, { icon: , title: "Support & Maintenance", shortDescription: "Continuous monitoring and technical support to ensure optimal system performance.", fullDescription: "We offer continuous monitoring, technical support, and system maintenance to ensure reliability, security, and optimal performance of your IT systems. Our dedicated support teams provide 24/7 oversight and rapid response.", image: "/support.png" }, { icon: , title: "Cloud Migration & Strategy", shortDescription: "Accelerate your journey to the cloud with scalable architecture and modernization.", fullDescription: "Modernize your infrastructure with our bespoke cloud migration and management services. From multi-cloud strategies to serverless optimization, we ensure your systems are scalable, cost-effective, and always available.", image: "/cloud.PNG" } ]; return (
{/* Hero Section */}
Global technology connectivity
Global Strategic Consulting

Comprehensive Technology Solutions

T&T Consulting bridges the gap between complex technology and strategic business outcomes on a global scale. We future-proof your enterprise.

{/* Services Section with Carousel */}

Precision Strategic Technology Solutions

{services.map((service, idx) => (
{service.title}
{/* Icon Circle */}
{service.icon}
{/* Content Overlay */}
Capability

{service.title}

{service.shortDescription}

{mounted && (
{service.icon}
{service.title} {service.fullDescription}
{service.title}
)}
))} {/* Custom Positioned Controls */}
{/* Partners Marquee */}

Trusted by Industry Leaders

{[...partnerLogos, ...partnerLogos].map((partner, idx) => (
{partner.description}
))}
{/* Professional CTA Section - Compact Version */}
Strategic Growth Partner

Ready to Transform Your Business?

Join dozens of industry leaders who have scaled their operations with T&T Consulting's strategic technology frameworks. Your digital evolution starts here.

Our process
); }