import React, { useState } from 'react'; import { motion, AnimatePresence } from 'motion/react'; import { CreditCard, Pointer, CheckCircle, TrendingUp, Dumbbell, ShoppingCart, Clock, Send, Check, Loader2 } from 'lucide-react'; export default function App() { const [formData, setFormData] = useState({ name: '', email: '', city: '', headcount: '50-100 employees' }); const [status, setStatus] = useState<'idle' | 'loading' | 'success' | 'error'>('idle'); const handleSubmit = async (e: React.FormEvent) => { e.preventDefault(); setStatus('loading'); try { const response = await fetch('https://formspree.io/f/xreanlkw', { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', }, body: JSON.stringify(formData), }); if (response.ok) { setStatus('success'); setFormData({ name: '', email: '', city: '', headcount: '50-100 employees' }); // Reset status after 5 seconds setTimeout(() => setStatus('idle'), 5000); } else { setStatus('error'); } } catch (error) { console.error('Error:', error); setStatus('error'); } }; const handleChange = (e: React.ChangeEvent) => { const { name, value } = e.target; setFormData(prev => ({ ...prev, [name]: value })); }; return (
{/* Top Navigation Bar */}
INTEGRA
{/* Hero Section */}
The Brands Your Team Loves

Popular Brands for Your Team

Make the workday better with a fridge full of warehouse favorites. From Doritos and Coca-Cola to high-protein snacks from Costco and Sam's Club, we bring everyone's favorites right to your breakroom.

Integra Vending Solutions Smart Fridge

Tap to Open

Support all mobile wallets

{/* Tech Section */}

How it Works

Getting a snack should be the easiest part of your day. Here is how we make it happen.

{[ { icon: CreditCard, title: "1. Quick Tap", desc: "Just use your card or phone to say hello to the fridge. It's safe, secure, and ready when you are." }, { icon: Pointer, title: "2. Pick Your Favorite", desc: "Open the door and grab whatever looks good! Our smart tech keeps track of what you take so you don't have to." }, { icon: CheckCircle, title: "3. Head Back to Work", desc: "Close the door and you're all set. We'll send you a receipt for only what you took. No lines, no stress." } ].map((step, i) => (

{step.title}

{step.desc}

))}
{/* Benefits Section */}

Why Teams Love Us

We make sure everyone wins, from the first bite to the monthly report.

For the Team

Member Perks
    {[ { title: "The Brands You Crave", desc: "We stock up daily with the most popular snacks and drinks from the brands your team already knows and loves." }, { title: "No More Waiting", desc: "Skip the coffee shop line. Your favorites are right there in the office whenever you need a boost." }, { title: "Bulk Value, Zero Effort", desc: "Enjoy the best of warehouse club shopping without the trip. We handle the heavy lifting and restocking." } ].map((item, i) => (
  • {item.title}

    {item.desc}

  • ))}

For the Office

Business Value
    {[ { title: "Totally Free Setup", desc: "We take care of the installation and restocking. It's a premium perk with zero hassle for you." }, { title: "Boost Office Morale", desc: "A premium amenity stocked with everyone's favorites makes the office a place people want to be." }, { title: "Smart Inventory Insights", desc: "Access insights on what your team loves most via our dashboard." } ].map((item, i) => (
  • {item.title}

    {item.desc}

  • ))}
{/* Local Edge Section */}

Warehouse Club Favorites

Enjoy the convenience of your favorite brands without leaving the office. We stock the best from Sam's Club and Costco, keeping your team fueled with popular chips, sodas, and high-protein options 24/7.

Protein Bars
Bulk Favorites
24/7 Access
Warehouse club protein bars and snacks Bulk healthy office snacks
{/* Form Section */}

Let's Chat About Your Office

Ready to upgrade your breakroom? Tell us a bit about your team and we'll reach out soon.

{status === 'success' ? (

Message Sent!

Thanks for reaching out. We'll get back to you shortly.

) : (
{status === 'error' && (

Something went wrong. Please try again.

)}

We respect your privacy. No spam, ever.

)}
); }