<script src="https://cdn.tailwindcss.com"></script> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> <script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script> <script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script> <body class="bg-gray-50 min-h-screen flex items-center justify-center p-4"> <div class="max-w-6xl w-full"> <h1 class="text-3xl font-bold text-gray-900 mb-8 text-center">Our Team</h1> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> <!-- Team Member Card 1 --> <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false" class="bg-white rounded-lg shadow-sm hover:shadow-lg transition-shadow duration-300 overflow-hidden"> <div class="p-6"> <div class="flex flex-col items-center"> <div class="w-24 h-24 bg-gradient-to-br from-blue-500 to-blue-600 rounded-full flex items-center justify-center mb-4"> <span class="text-white text-2xl font-bold">SJ</span> </div> <h3 class="text-xl font-semibold text-gray-900 mb-1">Sarah Johnson</h3> <p class="text-sm text-blue-600 font-medium mb-3">Product Designer</p> <p class="text-gray-600 text-sm text-center mb-4">Creating intuitive and beautiful user experiences for modern applications.</p> <div class="flex space-x-3" x-show="hover" x-transition> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-blue-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-linkedin" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-blue-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-twitter" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-blue-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="mail-outline" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> </div> </div> </div> </div> <!-- Team Member Card 2 --> <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false" class="bg-white rounded-lg shadow-sm hover:shadow-lg transition-shadow duration-300 overflow-hidden"> <div class="p-6"> <div class="flex flex-col items-center"> <div class="w-24 h-24 bg-gradient-to-br from-purple-500 to-purple-600 rounded-full flex items-center justify-center mb-4"> <span class="text-white text-2xl font-bold">MC</span> </div> <h3 class="text-xl font-semibold text-gray-900 mb-1">Michael Chen</h3> <p class="text-sm text-blue-600 font-medium mb-3">Lead Developer</p> <p class="text-gray-600 text-sm text-center mb-4">Building scalable solutions with modern web technologies and best practices.</p> <div class="flex space-x-3" x-show="hover" x-transition> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-purple-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-linkedin" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-purple-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-github" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-purple-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="mail-outline" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> </div> </div> </div> </div> <!-- Team Member Card 3 --> <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false" class="bg-white rounded-lg shadow-sm hover:shadow-lg transition-shadow duration-300 overflow-hidden"> <div class="p-6"> <div class="flex flex-col items-center"> <div class="w-24 h-24 bg-gradient-to-br from-green-500 to-green-600 rounded-full flex items-center justify-center mb-4"> <span class="text-white text-2xl font-bold">EP</span> </div> <h3 class="text-xl font-semibold text-gray-900 mb-1">Emily Parker</h3> <p class="text-sm text-blue-600 font-medium mb-3">Marketing Manager</p> <p class="text-gray-600 text-sm text-center mb-4">Driving growth through strategic campaigns and data-driven insights.</p> <div class="flex space-x-3" x-show="hover" x-transition> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-green-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-linkedin" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-green-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="logo-instagram" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> <a href="#" class="w-9 h-9 bg-gray-100 hover:bg-green-500 rounded-full flex items-center justify-center transition-colors duration-200 group"> <ion-icon name="mail-outline" class="text-gray-600 group-hover:text-white text-lg"></ion-icon> </a> </div> </div> </div> </div> </div> </div>
Login to leave a comment
No comments yet. Be the first!
No comments yet. Be the first!