import { createFileRoute, Link } from "@tanstack/react-router"; import { PageHero, Section } from "@/components/page-shell"; import { ArrowUpRight } from "lucide-react"; export const Route = createFileRoute("/rental")({ head: () => ({ meta: [ { title: "Rental — Misting Systems for Events & Short-Term Use" }, { name: "description", content: "Rent Promist misting fans and systems for events, expos, weddings and short-term outdoor cooling needs." }, { property: "og:title", content: "Promist Rental" }, { property: "og:description", content: "Short-term misting rentals for events and outdoor spaces." }, ], }), component: Rental, }); function Rental() { return ( <>
Rental misting
    {[ "Delivery, installation and pickup included", "Flexible terms — daily, weekly, monthly", "Portable fans and full pump-driven systems", "24/7 technical support during rental period", "Custom sizing based on your site plan", ].map((f) => (
  • /{f}
  • ))}
Request rental pricing
); }