/* stories.jsx — testimonials, pricing, blog, FAQ, newsletter, footer */ function Testimonials() { const items = [ { photo: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/kamala_promod.jpg?fit=900&ssl=1", quote: "We both lived in different parts of the U.S. and wouldn't have met if it weren't for Lahmee.", names: "Kamala & Promod", place: "Nepalgunj → Texas · Married 2022", }, { photo: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/reecha_bishesh.png?fit=900&ssl=1", quote: "I found my soulmate. Thanks to the team that walked with us through every step.", names: "Reecha & Bishesh", place: "Nepalgunj · Married 2023", }, { photo: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/Smirti_Prassana.jpeg?fit=900&ssl=1", quote: "We talked for a year before meeting. When we finally did, it felt like coming home.", names: "Smriti & Prasanna", place: "Dang → California · Married 2023", }, ]; return (
Real couples,
real marriages.} lead="Real couples who met through Lahmee (and our previous brand, NepaliLami). No paid testimonials, no staged photos — shared with their permission." />
{items.map((t, i) => (
"{t.quote}"
{t.names}
{t.place}
))}
Read more success stories
); } /* Pricing */ function Pricing() { const [billing, setBilling] = React.useState("yearly"); // "monthly" | "yearly" const vip = billing === "yearly" ? { usd: 20, npr: "2,000", period: "yr", note: "Just $1.67/month — billed yearly" } : { usd: 10, npr: "1,000", period: "mo", note: "Billed monthly · cancel any time" }; return (
Free to start. Premium when you're serious.} lead="No paywalls in the way of meeting someone. Premium VIP is for when you want to move faster." /> {/* Billing toggle */}
Free
$0 / forever

Everything you need to find someone you actually like.

  • Verified profile + 1 alias
  • Daily curated matches (5/day)
  • Photo blur + privacy controls
  • In-app chat with mutual matches
  • Horoscope match (basic)
Most chosen
Premium VIP
${vip.usd} / {vip.period}
or NRS {vip.npr} · {vip.note}

For when you want first access, family support, and zero limits.

  • Everything in Free, plus —
  • Unlimited daily matches + priority placement
  • Request contact info & private photos
  • Full horoscope: gun milan + dosha analysis
  • See who liked you, no limits on interest
  • Priority human support, 24-hour response
Pay with eSewa, Khalti, Stripe, or Apple Pay · Cancel any time
); } /* Blog */ function Blog() { const posts = [ { cat: "Stories", title: "Welcome to Lahmee: uniting Nepali hearts worldwide.", desc: "Why we built a matrimony app that puts privacy and family first.", img: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/nilu_nirendra.png?fit=1200&ssl=1", }, { cat: "Advice", title: "Finding your perfect match: 5 tips for the Nepali diaspora.", desc: "Long-distance, culture, and family — how to navigate it with grace.", img: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/shristi_biresh.jpg?fit=1200&ssl=1", }, { cat: "Culture", title: "A modern take on horoscope matching.", desc: "Why we built it into the app — and why you can turn it off in one tap.", img: "https://i0.wp.com/nepalilami.com/wp-content/uploads/2021/11/ring.png?fit=1200&ssl=1", }, ]; return (
Reading for the road
to a wedding.} lead="Stories, advice and small essays from matchmakers, sociologists, and members. Updated weekly." />
{posts.map((p, i) => (
{p.cat}

{p.title}

{p.desc}

))}
); } /* FAQ */ function FAQ() { const items = [ { q: "How do I get verified?", a: "After signing up, request verification from your profile. Our team reviews your photo, ID, and a short video selfie within 12–24 hours. Once verified, a small check mark appears on your profile and you can be seen by everyone else.", }, { q: "What can a free member do?", a: "Free members get a verified profile, up to 5 curated matches a day, photo blur and alias controls, in-app chat with mutual matches, and basic horoscope matching. Most people find their partner without ever upgrading.", }, { q: "What do VIP members get?", a: "Unlimited daily matches, priority placement, the ability to request contact info and private photos, the full horoscope suite (gun milan + dosha), see-who-liked-you, and 24-hour priority support.", }, { q: "Is my data safe?", a: "Profile data is encrypted at rest and in transit. We never sell data. Photos are stored separately from identity data, and you can delete everything in one tap from settings.", }, { q: "Do I have to be Nepali?", a: "Lahmee is built for the global Nepali community — but if you are seriously interested in marrying within it and respect the culture, you are welcome. Our verification team will confirm intent during onboarding.", }, { q: "Can my parents help me set this up?", a: "Yes. A parent or sibling can co-manage your profile with a separate login. You stay in control of who sees what — they help curate the shortlist.", }, ]; const [open, setOpen] = React.useState(0); return (
If you're still wondering,
start here.} />

Can't find what you need? Email support@lahmee.com — we read every message, usually within a day.

Visit help center
{items.map((it, i) => (

{it.a}

))}
); } /* Newsletter */ function Newsletter() { const [email, setEmail] = React.useState(""); const [sent, setSent] = React.useState(false); return (
The Lahmee letter

A short note,
once a month.

A success story, a single useful tip from our matchmakers, and one thing we're improving in the app. No spam, no growth hacking.

{ e.preventDefault(); if (email) setSent(true); }}> setEmail(e.target.value)} />

We'll never share your address. Unsubscribe in one click.

{/* ornament */}
); } /* Footer */ function Footer() { return ( ); } Object.assign(window, { Testimonials, Pricing, Blog, FAQ, Newsletter, Footer });