"use client"; import { motion, useScroll, useTransform } from "framer-motion"; import Image from "next/image"; import { useRef } from "react"; import Navigation from "./components/Navigation"; import Footer from "./components/Footer"; import AnimatedButton from "./components/AnimatedButton"; import FadeIn, { StaggerContainer, StaggerItem } from "./components/FadeIn"; import { ArrowRightIcon, PackageIcon, LeafIcon, UsersIcon, TruckIcon, TargetIcon, HeartIcon, SparklesIcon, MapPinIcon, CheckIcon, RecycleIcon, } from "./components/Icons"; import AnimatedCounter from "./components/AnimatedCounter"; const stats = [ { value: 100, suffix: "+", label: "Years Combined Experience" }, { value: 10, suffix: "", label: "States Covered" }, { value: 2005, suffix: "", label: "Industry Trusted Since" }, { value: 5, suffix: "", label: "Product Categories" }, ]; const productCategories = [ { icon: PackageIcon, title: "Food Packaging", description: "Premium containers, cutlery, and packaging solutions for every foodservice need.", color: "from-orange-500 to-red-500", }, { icon: LeafIcon, title: "Green Products", description: "Sustainable, compostable, and eco-friendly alternatives for conscious businesses.", color: "from-emerald-500 to-teal-500", }, { icon: SparklesIcon, title: "Specialty Products", description: "Custom printed containers, wraps, and premium catering solutions.", color: "from-purple-500 to-pink-500", }, { icon: TruckIcon, title: "Janitorial", description: "Complete range of cleaning supplies and janitorial essentials.", color: "from-blue-500 to-cyan-500", }, ]; const values = [ { icon: HeartIcon, title: "Family First", description: "Building character, strengthening individuals, and nurturing families.", }, { icon: UsersIcon, title: "Integrity", description: "Selflessness, servanthood, and confident humility in all we do.", }, { icon: TargetIcon, title: "Purpose Driven", description: "Professional, ethical representation with symbiotic growth.", }, ]; const territories = [ "Colorado", "Washington", "Oregon", "Idaho", "Utah", "Wyoming", "Montana", "New Mexico", "Nebraska", "Arizona", ]; export default function Home() { const heroRef = useRef(null); const { scrollYProgress } = useScroll({ target: heroRef, offset: ["start start", "end start"], }); const heroY = useTransform(scrollYProgress, [0, 1], ["0%", "30%"]); const heroOpacity = useTransform(scrollYProgress, [0, 0.5], [1, 0]); return (
{/* Hero Section */}
{/* Animated background elements */}
{/* Grid pattern overlay */}
{/* Badge */} Trusted Since 2005 {/* Main heading */} Your{" "} Foodservice {" "} &
Janitorial {" "} Experts
{/* Subheading */} With over 100 years of combined experience, we deliver exceptional sales and marketing solutions across the Rocky Mountain and Northwest regions. {/* CTA Buttons */} } > Get in Touch Learn More
{/* Scroll indicator */}
{/* Stats Section */}
{stats.map((stat, index) => (
{stat.label}
))}
{/* About Section */}
{/* Content */}
About Us

Driving Growth Through{" "} Strategic Partnership

We believe in “pull thru” selling, using key operators to direct distribution. Our integrated, end-user focused sales approach ensures we exceed growth goals for our manufacturers.

We maintain continuity with our distributor's sales force, providing them with the tools they need to successfully sell our products day-to-day.

} > Discover Our Approach
{/* Image/Visual */}
{/* Decorative elements */}
{[...Array(8)].map((_, i) => ( ))}
TCM Sales
{/* Floating badge */} 20+ Years of Excellence
{/* Values Section */}
Our Philosophy

Built on{" "} Strong Values

Our mission is to glorify God by being faithful stewards, serving our employees and families, and making a positive impact.

{values.map((value) => (

{value.title}

{value.description}

))}
{/* Products Section */}
Our Products

Everything You{" "} Need

} > View All Products
{productCategories.map((category) => ( {/* Gradient overlay on hover */}

{category.title}

{category.description}

))}
{/* Territory Section */}
{/* Background map pattern */}
Our Coverage

Serving the{" "} Rocky Mountain{" "} & Northwest{" "} Regions

Our head office is in Denver, Colorado, but our dedicated team works across ten states to provide exceptional service and support.

{/* Territory grid */}
{territories.map((territory, index) => ( {territory} ))}
} > Contact Us
{/* Decorative Map Visual */}
{/* Floating location dots */} {[ { top: "20%", left: "30%" }, { top: "40%", left: "60%" }, { top: "60%", left: "25%" }, { top: "75%", left: "70%" }, { top: "30%", left: "75%" }, ].map((pos, i) => ( ))}
{/* Sustainability CTA */}
{/* Background decoration */}

Committed to{" "} Sustainability

Go green and find the perfect sustainable product options for your business. We offer a comprehensive range of eco-friendly, compostable, and recyclable alternatives.

} > Explore Green Products State Ordinances
{/* Final CTA */}
{/* Background pattern */}

Ready to Get Started?

Let's talk about your foodservice and janitorial needs. Our team is here to help you find the perfect solutions.

} > Contact Us Today
); }