import { createFileRoute, Link } from "@tanstack/react-router"; import { ArrowUpRight, Droplets, Wind, Factory, Sparkles, Gauge, ShieldCheck } from "lucide-react"; import { useState, useCallback, useEffect } from "react"; import useEmblaCarousel from "embla-carousel-react"; import Autoplay from "embla-carousel-autoplay"; export const Route = createFileRoute("/")({ head: () => ({ meta: [ { title: "Promist — High-Pressure Misting for Cooling & Humidity" }, { name: "description", content: "Turnkey misting systems for outdoor cooling, humidification, dust suppression and special effects. Manufactured in the UAE since 1979." }, { property: "og:title", content: "Promist — Humidity and Control" }, { property: "og:description", content: "Misting systems for cooling, humidification and dust suppression." }, ], }), component: Home, }); const IMG = { nozzle: "/wp-uploads/2020/04/banner-sanitz.jpg", humid: "/wp-uploads/2016/03/humidification-misting.jpg", commercial: "/wp-uploads/2016/03/commercial-misting.jpg", industrial: "/wp-uploads/2016/03/industrial-misting.jpg", project1: "/wp-uploads/2017/04/banner4.jpg", project2: "/wp-uploads/2017/04/banner2.jpg", project3: "/wp-uploads/2017/04/banner3.jpg", banner: "/wp-uploads/2017/04/new-banner.jpg", }; const SLIDES = [ { img: "/wp-uploads/2017/04/nozzle-banner1.jpg", title: "Misting Solutions", subtitle: "Turnkey high-pressure misting for outdoor cooling, humidification, dust suppression and special effects — engineered in the UAE since 1979.", cta: "Discover solutions", ctaTo: "/misting-technology", }, { img: "/slide-residential.jpg", title: "Residential Outdoor Cooling", subtitle: "Reclaim your outdoor spaces with high-pressure misting — even when temperatures push past 45°C.", cta: "Explore applications", ctaTo: "/applications", }, { img: "/slide-humidity.jpg", title: "Humidity & Control", subtitle: "The most efficient way to keep the right humidity levels for industrial and commercial environments.", cta: "Request a quote", ctaTo: "/enquiry", }, ]; const APP_CARDS = [ { img: IMG.humid, title: "Humidification", desc: "Commercial and industrial environments where controlled humidity or temperature drive profitability.", icon: Droplets, href: "/applications/humidification" }, { img: IMG.commercial, title: "Commercial Outdoor Cooling", desc: "Reclaim patio dining and outdoor bars once temperatures push past 45°C.", icon: Wind, href: "/applications/commercial-outdoor-cooling" }, { img: IMG.industrial, title: "Industrial Cooling", desc: "A safer, more productive floor — cooling employees, equipment and processes.", icon: Factory, href: "/applications/industrial-outdoor-cooling" }, ]; function HeroSlider() { const [emblaRef, emblaApi] = useEmblaCarousel( { loop: true, duration: 40 }, [Autoplay({ delay: 5000, stopOnInteraction: true })], ); const [selectedIndex, setSelectedIndex] = useState(0); const scrollTo = useCallback( (index: number) => emblaApi && emblaApi.scrollTo(index), [emblaApi], ); const onSelect = useCallback(() => { if (!emblaApi) return; setSelectedIndex(emblaApi.selectedScrollSnap()); }, [emblaApi]); useEffect(() => { if (!emblaApi) return; onSelect(); emblaApi.on("select", onSelect); return () => { emblaApi.off("select", onSelect); }; }, [emblaApi, onSelect]); return (
{SLIDES.map((slide, i) => (
{slide.title}
Since 1979

{slide.title}

{slide.subtitle}

{slide.cta} Contact us
))}
{/* Dots */}
{SLIDES.map((_, i) => (
{/* Arrows */}
); } function Home() { return ( <> {/* HERO SLIDER */} {/* HIGH-PRESSURE MISTING SOLUTIONS FEATURE */}

High-Pressure Misting Solutions

From residential patios to industrial facilities, our high-pressure misting systems cool the air, control humidity, suppress dust and elevate spaces — designed, built and installed in the UAE since 1979.

    {[ "Outdoor cooling up to 45°C and beyond", "Industrial & commercial humidification", "Dust suppression & air filtration", "Special effects for events & landscapes", "Custom system design & installation", "12-month warranty from installation", ].map((f) => (
  • / {f}
  • ))}
Discover solutions
Misting Solutions
{/* APPLICATIONS */}

Applications

A cost-effective solution for outdoor cooling and humidification across industrial, commercial, residential, warehouses, greenhouses, gardens, patios, parks and amusement areas.

All applications
{APP_CARDS.map((a) => (
{a.title}

{a.title}

{a.desc}

Details
))}
{/* 5 REASONS */}

Five great reasons to choose us

    {[ "Best product quality", "100% customer satisfaction", "Comprehensive range of services", "Always available for you", "Services guarantee", ].map((r, i) => (
  1. 0{i + 1}
    {r}
  2. ))}
{/* FULL SERVICES */}

Promist is a
full-service
misting technology

By forcing water through specially designed nozzles at high pressure, we create an ultra-fine mist — the science behind every one of our systems.

{[ { i: Droplets, t: "Humidification", d: "The most efficient way to keep the right humidity levels for food, materials and processes." }, { i: Sparkles, t: "Special effects", d: "Elevate landscapes, pools, events, expos, amusement parks and sports events." }, { i: Gauge, t: "Cooling principle", d: "Billions of tiny droplets evaporate into vapor — the phase change cools the surrounding air." }, { i: ShieldCheck, t: "Dust suppression", d: "Extremely effective solutions for airborne dust suppression and air filtration." }, ].map((s) => (

{s.t}

{s.d}

))}
{/* PROJECTS */}

Recent projects

View more
{[IMG.project1, IMG.project2, IMG.project3].map((src, i) => ( {`Project
Case study
Project 0{i + 1}
))}
{/* CONTACT BAND */}

Questions?
Call now: +971 4 251 5596

Request a quote
); }