// Pages — Home, Real Weddings index, Wedding Story (case study), Services, Destinations, About, Enquire. // ────────── HOME ────────── function Home({ tweaks }) { const featured = REAL_WEDDINGS.filter((w) => w.featured); const heroImg = tweaks.heroTreatment === "mosaic" ? "media/decor-mandap.webp" : tweaks.heroTreatment === "split" ? "media/decor-entrance.webp" : "media/decor-mandap.webp"; return (
{/* Philosophy / intro */}
The Studio

Every wedding has a different emotion.

Events by Saniya was born in Dubai in 2014 — first as Selvatico, then under the name of its founder. Ten years and more than two hundred and fifty celebrations later, the brief is unchanged: bring the wedding inside a couple's head into the room they are standing in.

We design and run weddings across the UAE, India, Greece, Thailand, Sri Lanka, the United Kingdom and beyond — alongside corporate, gala and private events.

About Saniya
{/* Real weddings teaser */}
Real Weddings

Couples we've had the privilege of holding.

All real weddings →
{/* Services strip */} {/* Destinations strip */} {/* Founder block */} {/* Testimonials */}
); } function HomeHero({ treatment = "full" }) { if (treatment === "split") return ; if (treatment === "mosaic") return ; return ; } function HeroFull() { return (
Dubai · India · Worldwide

Weddings with the{" "} quiet {" "} of a story well told.

Luxury wedding & event planning, design and management. Ten years, more than two hundred and fifty celebrations, across the UAE, India and the world.

{/* scroll indicator */}
Scroll
); } function HeroSplit() { return (
Dubai · India · Worldwide

Weddings with the
quiet{" "} of a story
well told.

Luxury wedding & event planning, design and management. Ten years, more than two hundred and fifty celebrations.

); } function HeroMosaic() { const imgs = ["media/decor-mandap.webp","media/decor-mehndi.webp","media/decor-haldi-ceremony.webp","media/decor-wedding-stage.webp","media/decor-sangeet.webp"]; return (
Dubai · India · Worldwide

Weddings with the quiet of a story well told.

{imgs.map((src, i) => (
))}
); } function TrustStrip() { return (
{[ { num: "10+", label: "Years" }, { num: "250+", label: "Events" }, { num: "10", label: "Countries" }, { num: "@eventsbysaniya", label: "On Instagram", small: true }, ].map((s) => (
{s.num}
{s.label}
))}
); } function ServicesPreview({ tweaks }) { return (
); } function DestinationsPreview() { return (
{DESTINATIONS.slice(0, 8).map((d) => (
{d.count} weddings

{d.name}

))}
); } function FounderBlock() { return (
Saniya Wahi
The Founder

Planning dreams for people is{" "} my dream.

Saniya Wahi began at twenty-two, under the name Selvatico, planning her first weddings out of an apartment in Dubai. A decade and a rebrand later, the studio now spans two countries and a global guest list.

Her stated background in psychology shapes the way the studio works — slow first conversations, careful listening, an instinct for the families behind the paperwork.

Saniya's story →
); } function TestimonialsBlock() { const [idx, setIdx] = useState(0); const t = TESTIMONIALS[idx]; return (
Words from Families
“{t.body}”
{t.attribution} · {t.locale}
{TESTIMONIALS.map((_, i) => (

Couple testimonials are consent-gated and shown without identifying details unless families have given permission.

); } window.HomePages = { Home }; Object.assign(window, { Home });