"use client"; import { motion } from "framer-motion"; import Navigation from "../components/Navigation"; import Footer from "../components/Footer"; import AnimatedButton from "../components/AnimatedButton"; import FadeIn, { StaggerContainer, StaggerItem } from "../components/FadeIn"; import { ArrowRightIcon, HeartIcon, UsersIcon, StarIcon, TargetIcon, } from "../components/Icons"; const coreValues = [ { icon: HeartIcon, title: "Family", description: "To serve our employees and their families by establishing a work environment and company policies that build character, strengthen individuals, and nurture families.", color: "from-rose-500 to-pink-500", bgColor: "bg-rose-50 dark:bg-rose-950/20", }, { icon: StarIcon, title: "Character", description: "Every employee at TCM Sales & Marketing is to conduct themselves with an attitude of selflessness, servanthood, and confident humility.", color: "from-amber-500 to-orange-500", bgColor: "bg-amber-50 dark:bg-amber-950/20", }, { icon: UsersIcon, title: "Giving Back", description: "We encourage a spirit of giving back to those in need. We believe that we have an obligation to serve others because we have been given so much.", color: "from-emerald-500 to-teal-500", bgColor: "bg-emerald-50 dark:bg-emerald-950/20", }, { icon: TargetIcon, title: "Encouragement", description: "We want all employees to encourage one another at all times and help each other reach their full potential.", color: "from-blue-500 to-indigo-500", bgColor: "bg-blue-50 dark:bg-blue-950/20", }, ]; const principles = [ "Faithful stewardship", "Professional integrity", "Ethical representation", "Symbiotic growth", "Positive impact", "Service excellence", ]; export default function CulturePage() { return (
{/* Hero Section */}
{/* Animated background */}
{/* Decorative elements */}
{[...Array(4)].map((_, i) => ( ))}
Who We Are Our{" "} Culture Built on faith, driven by purpose, and committed to making a positive impact on everyone we serve. } > Join Our Team
{/* Scroll indicator */}
{/* Mission & Purpose Section */}
{/* Mission */}

Our Mission

To glorify God by being faithful stewards of all that is entrusted to us. To serve our employees and families well, using our resources to positively impact and help others.

{/* Purpose */}

Our Purpose

To provide professional and ethical representation for both our manufacturers and distributor partners with a vision of symbiotically beneficial growth.

{/* Guiding Principles */}
Guiding Principles
{principles.map((principle, index) => ( {principle} ))}
{/* Core Values Section */}
What Drives Us

Our Core{" "} Values

These values guide everything we do and shape how we interact with our team, partners, and community.

{coreValues.map((value) => ( {/* Gradient overlay on hover */}

{value.title}

{value.description}

))}
{/* Visual Culture Section */}
{/* Visual */}
{/* Animated rings */} {[...Array(3)].map((_, i) => (
))} {/* Center content */}
🤝

Stronger Together

Since 2005

{/* Floating value icons */} {coreValues.map((value, i) => { const positions = [ { top: "10%", left: "10%" }, { top: "10%", right: "10%" }, { bottom: "10%", left: "10%" }, { bottom: "10%", right: "10%" }, ]; return (
); })}
{/* Content */}
Our Community

More Than a{" "} Workplace

At TCM Sales & Marketing, we're not just colleagues—we're a family. We believe in creating an environment where everyone can thrive, grow, and make a meaningful impact.

{[ "Supportive work environment", "Opportunities for growth", "Work-life balance", "Community involvement", ].map((item, index) => ( {item} ))}
{/* Quote Section */}
💬
“We believe that we have an obligation to serve others because we have been given so much.”
TCM Sales & Marketing
{/* CTA Section */}
{/* Background pattern */}

Want to Be Part of Our Story?

We're always looking for passionate individuals who share our values and want to make a difference.

} > Get in Touch Learn What We Do
); }