import { Link } from "@tanstack/react-router"; import { ArrowUpRight, type LucideIcon } from "lucide-react"; export function PageHero({ eyebrow, title, lede }: { eyebrow: string; title: string; lede?: string }) { return (
{eyebrow}

{title}

{lede &&

{lede}

}
); } export function Section({ children, className = "" }: { children: React.ReactNode; className?: string }) { return
{children}
; } export function FeatureRow({ img, title, body, reverse, Icon }: { img: string; title: string; body: string; reverse?: boolean; Icon?: LucideIcon }) { return (
*:first-child]:order-2" : ""}`}> {title}
{Icon && }

{title}

{body}

); } export function CTA() { return (
Questions? Call Now:{" "} +971 4 320 3552
BOOK NOW
); }