From de7e321d8531e5bc7a88a51bd88616e93d652c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mora?= Date: Fri, 19 Dec 2025 05:50:46 -0500 Subject: [PATCH] Added products page. --- app/what-we-do/page.tsx | 681 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 681 insertions(+) create mode 100644 app/what-we-do/page.tsx diff --git a/app/what-we-do/page.tsx b/app/what-we-do/page.tsx new file mode 100644 index 0000000..0b30716 --- /dev/null +++ b/app/what-we-do/page.tsx @@ -0,0 +1,681 @@ +"use client"; + +import { motion } from "framer-motion"; +import Image from "next/image"; +import Navigation from "../components/Navigation"; +import Footer from "../components/Footer"; +import AnimatedButton from "../components/AnimatedButton"; +import FadeIn, { StaggerContainer, StaggerItem } from "../components/FadeIn"; +import { + ArrowRightIcon, + UsersIcon, + TargetIcon, + CheckIcon, + TruckIcon, + SparklesIcon, + PackageIcon, + BuildingIcon, +} from "../components/Icons"; + +const distributorServices = [ + { + icon: PackageIcon, + title: "Product Samples", + description: + "We provide comprehensive product samples to help your sales team demonstrate value to customers.", + }, + { + icon: SparklesIcon, + title: "Point of Sale Materials", + description: + "Custom-designed marketing materials that simplify the selling process for your team.", + }, + { + icon: UsersIcon, + title: "Product Training", + description: + "In-depth product knowledge sessions to make your sales force confident and effective.", + }, + { + icon: BuildingIcon, + title: "Marketing Support", + description: + "Our in-house graphics team develops customized sales pieces tailored to your needs.", + }, +]; + +const operatorBenefits = [ + "Comprehensive packaging consultation", + "Operations review and optimization", + "Best-fit product recommendations", + "Cost-effective solutions", + "Sustainability options guidance", + "Ongoing support and service", +]; + +const processSteps = [ + { + step: "01", + title: "Discovery", + description: + "We begin by understanding your unique business needs, current challenges, and growth objectives.", + }, + { + step: "02", + title: "Analysis", + description: + "Our team reviews your operations and identifies opportunities for improvement and cost savings.", + }, + { + step: "03", + title: "Solutions", + description: + "We recommend the best products and strategies tailored to your specific requirements.", + }, + { + step: "04", + title: "Partnership", + description: + "We maintain ongoing support, ensuring your continued success and adapting to your evolving needs.", + }, +]; + +export default function WhatWeDoPage() { + return ( +
+ + + {/* Hero Section */} +
+ {/* Animated background */} +
+ + +
+ + {/* Grid pattern */} +
+ +
+ + + + Our Approach + + + + + What We{" "} + + Do + + + + + We bridge the gap between manufacturers and end-users through + strategic partnerships, innovative solutions, and dedicated support. + +
+ + {/* Scroll indicator */} + + + + + +
+ + {/* Pull-Through Selling Section */} +
+
+
+
+ + + Our Strategy + + + +

+ The Power of{" "} + + Pull-Through Selling + +

+
+ +

+ We focus on key operators and use a pull-through selling + approach, working closely with our distribution partners to + grow sales organically and sustainably. +

+
+ +

+ By establishing strong relationships with end-users, we create + demand that naturally flows through the distribution channel, + benefiting everyone in the supply chain. +

+
+ +
+ } + > + Partner With Us + + + View Products + +
+
+
+ + {/* Visual */} + +
+
+ {/* Animated flow diagram */} +
+ {/* Outer ring */} + + {/* Middle ring */} + + {/* Inner ring */} + + + {/* Center logo */} + + TCM Sales + + + {/* Orbiting elements */} + {[ + { icon: TruckIcon, label: "Distribution", angle: 0 }, + { icon: UsersIcon, label: "Operators", angle: 120 }, + { icon: PackageIcon, label: "Products", angle: 240 }, + ].map((item, i) => ( + + + + + + + + ))} +
+
+
+
+
+
+
+ + {/* Distribution Partners Section */} +
+
+
+ + + + Distribution Partners + + + +

+ Supporting Your{" "} + Sales Success +

+
+ +

+ We work closely with our distribution partners to provide the + tools, training, and materials needed to succeed in today's + ever-changing foodservice industry. +

+
+
+ + + {distributorServices.map((service) => ( + + + + + +

+ {service.title} +

+

+ {service.description} +

+ + +
+ ))} +
+ + {/* Additional info */} + + +
+
+

+ In-House Marketing Team +

+

+ Our dedicated graphics and marketing team develops customized + sales pieces specific to your needs. We work with district + sales managers and marketing specialists to create tools that + simplify the selling process. +

+
+
+ +
+
+ +
+ +
+
+ + +
+
+ + {/* Key Operators Section */} +
+
+
+ {/* Benefits List */} + +
+ + + Key Operators + +

+ Tailored Solutions for{" "} + Your Operations +

+

+ We offer comprehensive consultation of your packaging and + disposable needs. Our team reviews your operations to help you + find the best products for your specific applications. +

+ +
+ {operatorBenefits.map((benefit, index) => ( + + + + + + {benefit} + + + ))} +
+ + + } + > + Schedule a Consultation + + +
+
+ + {/* Visual */} + +
+
+ {/* Decorative elements */} +
+ + + + + + + +
+ + {/* Floating cards */} + +

+ Custom Solutions +

+

+ Tailored to your needs +

+
+ + +

+ Expert Guidance +

+

+ Industry professionals +

+
+
+
+
+
+
+
+ + {/* Process Section */} +
+
+
+ + + Our Process + + + +

+ How We{" "} + Work With You +

+
+ +

+ A proven approach to building successful, long-term partnerships. +

+
+
+ +
+ {processSteps.map((item, index) => ( + + + {/* Connector line */} + {index < processSteps.length - 1 && ( +
+ )} + +
+ + {item.step} + +

+ {item.title} +

+

+ {item.description} +

+
+ + + ))} +
+
+
+ + {/* CTA Section */} +
+ {/* Background pattern */} +
+ + + + + + +
+ +
+ +

+ Ready to Grow Together? +

+
+ +

+ Whether you're a distributor looking for support or an operator + seeking the right solutions, we're here to help. +

+
+ +
+ } + > + Contact Us Today + + + + Explore Products + + +
+
+
+
+ +
+ ); +}