import Image from "next/image"; import Link from "next/link"; import { FadeIn, SlideInLeft, SlideInRight, ScaleIn, StaggerContainer, StaggerItem, HoverScale, PageTransition } from "../components/Motion"; export default function Home() { // Statistics data const stats = [ { value: "100+", label: "Projects Completed" }, { value: "5+", label: "Expert Team Members" }, { value: "15+", label: "Years Experience" }, { value: "99%", label: "Client Satisfaction" }, ]; // Services overview const services = [ { title: "Web Hosting and CMS", description: "Professional web hosting and ready CMS solutions for your business", icon: "/images/webhosting2.jpg", link: "/services" }, { title: "Custom Web Development", description: "Modern web applications with cutting-edge technologies", icon: "/images/webapps.jpg", link: "/services" }, { title: "Mobile App Development", description: "Cross-platform and native mobile applications", icon: "/images/mobiledev.jpg", link: "/services" }, { title: "Managed VPS Services", description: "Professional server management and hosting solutions", icon: "/images/forex1.jpg", link: "/services" }, ]; // Features const features = [ { title: "Cutting-Edge Tech", description: "We use the latest technologies to deliver modern, scalable solutions.", icon: "/images/tech.jpg" }, { title: "Expert Team", description: "Our team of professionals brings years of leading industry experience.", icon: "/images/dev.jpg" }, { title: "24/7 Support", description: "Round-the-clock technical support to ensure your systems run smoothly.", icon: "/images/support.jpg" }, { title: "Tailored Solutions", description: "Custom solutions designed specifically for your business needs.", icon: "/images/coding.jpg" }, ]; // Testimonials const testimonials = [ { quote: "YznApps transformed our online presence with a beautiful, functional website that perfectly represents our brand.", author: "Sarah Johnson", company: "TechStart Inc." }, { quote: "The mobile app developed by YznApps helped us increase customer engagement by 200%. Highly recommended!", author: "Michael Chen", company: "GrowthBox" }, { quote: "Their VPS hosting service is reliable, fast, and their support team is always available when we need them.", author: "David Williams", company: "DataFlow Systems" }, ]; return (
{/* Hero Section */}
IT Solutions Background

Professional IT Solutions for Your Business

Web development, mobile apps, hosting, and VPS services tailored to your needs

Our Services Contact Us
{/* Statistics Section */}

Our Impact in Numbers

We've helped businesses of all sizes achieve their technology goals

{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
{/* Services Section */}

Our Services

Comprehensive IT solutions to help your business thrive

{services.map((service, index) => (
{service.title}

{service.title}

{service.description}

Learn more →
))}
View All Services
{/* Features Section */}

Why Choose Us

What sets us apart from the competition

{features.map((feature, index) => (
{feature.title}

{feature.title}

{feature.description}

))}
{/* Testimonials Section */}

What Our Clients Say

Don't just take our word for it

{testimonials.map((testimonial, index) => (

{testimonial.quote}

{testimonial.author}
{testimonial.company}
))}
{/* Call to Action */}

Ready to Transform Your Business?

Contact us today to discuss how our IT solutions can help you achieve your goals

Get Started
); }