import React from "react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { Badge } from "../components/ui/badge"; import { ArrowRight, Heart, Users, Target, Lightbulb, Globe, Award, Coffee, Gamepad2, BookOpen } from "lucide-react"; export const CultureValues = () => { const values = [ { icon: Heart, title: "People First", description: "We put our team and clients at the heart of everything we do. Success is measured not just by results, but by the positive impact we have on people's lives.", examples: ["Flexible work arrangements", "Mental health support", "Personal development plans"] }, { icon: Lightbulb, title: "Innovation Mindset", description: "We encourage creative thinking, experimentation, and learning from failure. Every challenge is an opportunity to find a better way.", examples: ["Innovation time (20% projects)", "Hackathons and idea sessions", "Failure celebration stories"] }, { icon: Users, title: "Collaborative Spirit", description: "We believe diverse perspectives create better solutions. We foster an inclusive environment where everyone's voice matters.", examples: ["Cross-functional teams", "Open feedback culture", "Mentorship programs"] }, { icon: Target, title: "Excellence Drive", description: "We're committed to delivering exceptional quality in everything we do, continuously raising the bar for ourselves and the industry.", examples: ["Code review standards", "Client satisfaction metrics", "Continuous learning culture"] }, { icon: Globe, title: "Global Perspective", description: "We embrace cultural diversity and think globally while acting locally, bringing international best practices to every project.", examples: ["Remote-first culture", "Cultural awareness training", "Global project teams"] }, { icon: Award, title: "Integrity Always", description: "We act with honesty, transparency, and ethical principles in all our interactions, building trust through consistent actions.", examples: ["Transparent communication", "Ethical business practices", "Fair hiring processes"] } ]; const cultureHighlights = [ { icon: Coffee, title: "Virtual Coffee Chats", description: "Regular informal meetings to connect team members across different time zones and projects." }, { icon: BookOpen, title: "Learning Fridays", description: "Dedicated time every Friday for personal learning, skill development, and knowledge sharing." }, { icon: Gamepad2, title: "Game Nights", description: "Monthly virtual game nights and team challenges to build relationships and have fun together." }, { icon: Users, title: "Mentorship Program", description: "Structured mentoring relationships to support career growth and knowledge transfer." } ]; return (
{/* Hero Section */}
Our Culture

Culture & Values That Drive Us Forward

Our culture is built on shared values that guide how we work, interact, and grow together as a global team committed to excellence and innovation.

{/* Core Values */}

Our Core Values

The principles that shape our decisions, interactions, and commitment to excellence

{values.map((value, index) => (

{value.title}

{value.description}

In Action:

{value.examples.map((example, exampleIndex) => (
{example}
))}
))}
{/* Culture Highlights */}

Life at WDI

How we bring our values to life through daily practices and team traditions

{cultureHighlights.map((highlight, index) => (

{highlight.title}

{highlight.description}

))}
{/* Team Testimonials */}

What Our Team Says

Hear from our team members about their experience working at WDI

{[ { quote: "WDI has given me the freedom to innovate and grow professionally while maintaining a perfect work-life balance. The team genuinely cares about each other's success.", author: "Sarah Kim", role: "Senior Frontend Developer", tenure: "2 years at WDI" }, { quote: "The collaborative culture here is unlike anywhere I've worked before. Ideas flow freely, and everyone's input is valued regardless of their role or seniority.", author: "Michael Chen", role: "AI/ML Engineer", tenure: "1.5 years at WDI" }, { quote: "I love how we're encouraged to take risks and learn from failures. The learning opportunities and mentorship have accelerated my career growth tremendously.", author: "Emma Rodriguez", role: "Product Designer", tenure: "3 years at WDI" } ].map((testimonial, index) => (

"{testimonial.quote}"

{testimonial.author}

{testimonial.role}

{testimonial.tenure}

))}
{/* Diversity & Inclusion */}

Diversity & Inclusion

We believe that diverse teams create better solutions. Our commitment to inclusion means creating an environment where everyone feels valued, respected, and empowered to contribute their best work.

50% of our leadership team identifies as underrepresented
Team members from 15+ countries and cultures
Regular D&I training and awareness programs
Employee resource groups and support networks

Global Team

United by shared values, enriched by diverse perspectives

{/* Work-Life Balance */}

Work-Life Integration

We believe in sustainable success that doesn't come at the cost of personal well-being

{[ { title: "Flexible Hours", description: "Work when you're most productive" }, { title: "Remote First", description: "Work from anywhere in the world" }, { title: "Unlimited PTO", description: "Take the time you need to recharge" }, { title: "Wellness Support", description: "Mental health and fitness programs" } ].map((benefit, index) => (

{benefit.title}

{benefit.description}

))}
{/* CTA Section */}

Ready to Be Part of Our Story?

Join a culture that values growth, innovation, and the success of every team member.

); };