/* global React */ const { useState: useStateHome, useEffect: useEffectHome, useRef: useRefHome } = React; // ── HERO ───────────────────────────────────────── window.Hero = function Hero({ ctaText = 'Book Appointment' }) { return (
BENGALURU 

Hands that
deserve
a little luxury.

A nail boutique where craft meets indulgence — gel polish, sculpted extensions, hand-painted art, and bespoke press-ons made for the way you live.

{ctaText} Shop Press-Ons
1000+
Sets crafted
4.9★
Google rating
3 yrs
In Bengaluru
Lacquered
to perfection
since 2023
); }; // ── SERVICES ───────────────────────────────────── const SERVICES = [ { name: 'Gel Polish', duration: '45 min', from: '₹699', desc: 'High-shine, long-wear gel in 200+ shades. Lasts 3 weeks without a chip.', icon: }, { name: 'Nail Art', duration: '60–90 min', from: '₹1,099', desc: 'Hand-painted florals, chrome, French twists, 3D charms — anything you dream.', icon: }, { name: 'Nail Extensions', duration: '90 min', from: '₹1,499', desc: 'Acrylic-built lengths sculpted to your nail bed — almond, coffin, stiletto, square.', icon: }, { name: 'Gel Extensions', duration: '90–120 min', from: '₹1,799', desc: 'Lightweight, flexible builder-gel extensions — strong, natural-looking, kind to your nails.', icon: }, { name: 'Press-Ons', duration: 'Made to order', from: '₹899', desc: 'Reusable, salon-grade press-on sets. Pick a design or customise on WhatsApp.', icon: }]; window.Services = function Services() { return (
The Menu

Five ways to indulge

From a quick gel refresh to sculpted couture extensions — every service is finished by hand, never rushed.

{SERVICES.map((s, i) =>
{s.icon}
0{i + 1}

{s.name}

{s.desc}

{s.duration}
Book this service
)}
); }; // ── GALLERY ────────────────────────────────────── const GALLERY_CATS = ['All', 'Chrome', 'Florals', 'French', 'Glitter', '3D Charms', 'Minimal']; const GALLERY_ITEMS = [ { slot: 'gallery-1', cat: 'Chrome', label: 'Aurora chrome · almond', tone: 1 }, { slot: 'gallery-2', cat: 'Florals', label: 'Hand-painted rose · coffin', tone: 2 }, { slot: 'gallery-3', cat: 'French', label: 'Micro French · stiletto', tone: 3 }, { slot: 'gallery-4', cat: '3D Charms', label: 'Pearl drop · square', tone: 4 }, { slot: 'gallery-5', cat: 'Glitter', label: 'Cat-eye glitter · almond', tone: 1 }, { slot: 'gallery-6', cat: 'Minimal', label: 'Butter nude · short square', tone: 2 }, { slot: 'gallery-7', cat: 'Florals', label: 'Cherry blossom · oval', tone: 3 }, { slot: 'gallery-8', cat: 'Chrome', label: 'Mirror chrome · stiletto', tone: 4 }, { slot: 'gallery-9', cat: 'French', label: 'Coloured French · ballerina',tone: 1 }, { slot: 'gallery-10', cat: '3D Charms', label: 'Bow charms · short oval', tone: 2 }]; window.Gallery = function Gallery() { const [cat, setCat] = useStateHome('All'); const items = cat === 'All' ? GALLERY_ITEMS : GALLERY_ITEMS.filter((i) => i.cat === cat); const trackRef = useRefHome(null); const scroll = (dir) => { if (!trackRef.current) return; trackRef.current.scrollBy({ left: dir * 320, behavior: 'smooth' }); }; return ( ); }; // ── TESTIMONIALS ───────────────────────────────── const TESTIMONIALS = [ { name: 'Ananya R.', avatar: 'AR', when: '2 weeks ago', rating: 5, text: 'Honestly the best gel mani I\'ve had in Bengaluru. Three weeks in and not a single chip. The little salon is so calming, and they actually listen when you describe what you want.' }, { name: 'Priya M.', avatar: 'PM', when: '1 month ago', rating: 5, text: 'I went in with a vague Pinterest idea and walked out with the exact set. Hand-painted florals on a milky base — got compliments for two weeks straight.' }, { name: 'Sneha V.', avatar: 'SV', when: '3 weeks ago', rating: 5, text: 'Got the gel extensions for my engagement and I cannot stop staring at my hands. Lightweight, gorgeous shape, and they added the tiniest pearl charms. Worth every rupee.' }, { name: 'Divya K.', avatar: 'DK', when: '2 months ago', rating: 5, text: 'Booked a press-on set on WhatsApp — chrome French with a tiny bow. Showed up next morning, fit perfectly. Reusing them for my second wedding event already.' }]; window.Testimonials = function Testimonials() { return (
From our chair

What our clients say

Verified reviews from Google 4.9 ★ · 287 reviews
{TESTIMONIALS.map((t, i) =>
{Array.from({ length: t.rating }).map((_, j) => )}

"{t.text}"

{t.avatar}
{t.name}
{t.when}
)}
Read all 287 reviews on Google
); }; // ── PRESS-ON TEASER ────────────────────────────── window.PressOnTeaser = function PressOnTeaser() { const waNum = (window.LQ_PUB && window.LQ_PUB.waNumber()) || '918317451779'; return (
New · Press-On Atelier

Salon nails,
delivered to your door.

20 ready-made designs. Or send us your vision on WhatsApp and we'll hand-craft a one-of-one set just for you.

Shop the collection Customise on WhatsApp
); };