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 About() { // Features data from info.txt const features = [ { title: "Innovation", description: "We stay ahead of the curve with cutting-edge technologies and modern development practices.", icon: "/images/innovation2.jpg" }, { title: "Experience", description: "Our team brings years of expertise in web, mobile, and cloud development solutions.", icon: "/images/dev.jpg" }, { title: "Quality", description: "We deliver robust, scalable, and high-performance solutions that exceed expectations.", icon: "/images/innovation.jpg" }, { title: "Support", description: "24/7 technical support and maintenance to ensure your systems run smoothly.", icon: "/images/support.jpg" } ]; // Team members data from info.txt const team = [ { name: "John Doe", role: "CEO & Founder", bio: "15+ years of experience in tech leadership and innovation.", image: "/images/webapps.jpg" }, { name: "Jane Smith", role: "Lead Developer", bio: "Expert in full-stack development and cloud architecture.", image: "/images/websiedesign.jpg" }, { name: "Mike Johnson", role: "Design Director", bio: "Award-winning UI/UX designer with a passion for user-centric design.", image: "/images/coding3.jpg" }, { name: "Sarah Wilson", role: "Project Manager", bio: "Certified PMP with extensive experience in agile methodologies.", image: "/images/hosting.jpg" } ]; return (
{/* Hero Section */}
About Us Background

About YznApps

We're a team of passionate IT professionals dedicated to delivering exceptional technology solutions

{/* Company Overview */}
YznApps Team

Our Story

YznApps was founded with a simple mission: to provide businesses with innovative, reliable, and scalable IT solutions. Over the years, we've grown from a small team of developers to a comprehensive IT service provider, helping businesses of all sizes transform their digital presence and operations.

We believe in building long-term relationships with our clients, understanding their unique challenges, and delivering solutions that drive real business value. Our team combines technical expertise with industry knowledge to ensure that every project we undertake exceeds expectations.

{/* Core Values/Features */}

Our Core Values

The principles that guide everything we do

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

{feature.title}

{feature.description}

))}
{/* Team Section */}

Meet Our Team

The experts behind our success

{team.map((member, index) => (
{member.name}

{member.name}

{member.role}

{member.bio}

))}
{/* Call to Action */}

Ready to Work With Us?

Contact our team today to discuss how we can help with your IT needs

Get in Touch
); }