import { PublicInset, PublicPageHeader, PublicSection, PublicSurface, } from "@/components/public-surface" const steps = [ { number: "01", title: "Tell Us About Your Location", description: "Answer a few questions about your location, what you're looking for, and general information so we can see if we're a good fit.", timing: "Day 1 - Virtual", }, { number: "02", title: "Site Visit & Planning", description: "We schedule a site visit to walk through our plan to get you the right machine or machines for your space.", timing: "Day 2-3 - In Person", }, { number: "03", title: "Free Installation", description: "Get your machine or machines installed in about a week or less. We just need to get you on the schedule! Completely FREE.", timing: "Day 4-7 - Your Location", }, ] export function HowItWorksSection() { return (
{steps.map((step, index) => (
{step.number}
{step.timing}

{step.title}

{step.description}

))}

Our process is as easy as 3 steps. We mentioned{" "} FREE, right?

) }