// PRICING
function Pricing() {
const tiers = [
{
key: "silver",
name: "Silver",
tagline: "Get in the room",
price: 2499,
seat2Price: 2249,
original: 4999,
off: "50% OFF",
seats: "32 seats left",
bookingLink: "https://pages.razorpay.com/rise-to-ipo-with-ai-ps-silver",
bookingLink2: "https://pages.razorpay.com/rise-to-ipo-with-ai-ps-2silver",
icon: ,
includes: [
"Seating behind Gold rows",
"Lunch & tea/coffee",
"Offline-only event access",
"Networking with 500+ founders",
"Workbook & templates",
"₹10,000 online course (free)",
],
},
{
key: "gold",
name: "Gold",
tagline: "Most founders pick this",
price: 4999,
seat2Price: 4499,
original: 12499,
off: "60% OFF",
seats: "11 seats left",
featured: true,
bookingLink: "https://rzp.io/rzp/rise-to-ipo-with-ai-ps-gold",
bookingLink2: "https://rzp.io/rzp/rise-to-ipo-with-ai-ps-2gold",
icon: ,
includes: [
"Seating behind VIP, ahead of Silver",
"Lunch & tea/coffee",
"Offline-only event access",
"Premium networking lounge",
"Workbook + scaling templates",
"₹20,000 online course (free)",
],
},
{
key: "platinum",
name: "Platinum",
tagline: "Closest to the speaker",
price: 11999,
seat2Price: 10799,
original: 31999,
off: "62% OFF",
seats: "4 seats left",
bookingLink: "https://pages.razorpay.com/riseto-ipo-with-ai-ps-platinum",
bookingLink2: "https://rzp.io/rzp/risetoipo-with-ai-ps-2platinum",
icon: ,
includes: [
"Front-row VIP seating",
"Lunch with the speaker",
"VIP-only networking circle",
"Workbook + Basesh’s personal annual calendar",
"₹40,000 online course (free)",
"15–20 min 1-on-1 with Basesh",
],
},
];
return (
Tickets & pricing
Join us at the Business Summit — get your tickets today.
Three rooms. One day. Pricing closes when seats run out — this isn’t a marketing trick, the venue caps us.
{tiers.map((t) => )}
100% money-back if you don’t leave with a 90-day plan.
·
GST included · UPI · Cards · EMI
);
}
function TierCard({ t }) {
const featured = t.featured;
return (
{featured && (
★ Most popular
)}
{/* head */}
{/* price */}
₹{t.price.toLocaleString("en-IN")}
₹{t.original.toLocaleString("en-IN")}
Only {t.seats}
{/* includes */}
{t.includes.map((inc, i) => (
-
))}
{/* CTA */}
);
}
window.Pricing = Pricing;