2 Commits

Author SHA1 Message Date
13b766cd0e Update src/app/page.tsx 2026-03-12 18:34:44 +00:00
f318aa62b4 Merge version_1 into main
Merge version_1 into main
2026-03-12 18:27:55 +00:00

View File

@@ -96,20 +96,10 @@ export default function LandingPage() {
<div id="membership" data-section="membership">
<PricingCardTwo
title="Membership Plans"
description="Choose the perfect membership plan to access our collections and exclusive benefits."
description="Compare features below and choose the perfect membership plan to access our collections and exclusive benefits."
tag="Join Our Community"
tagAnimation="slide-up"
plans={[
{
id: "basic", badge: "Student", badgeIcon: BookMarked,
price: "₹199/mo", subtitle: "Perfect for students and casual readers", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More" }
],
features: [
"Borrow up to 5 books per month", "Access to digital library", "Free late fees policy", "Monthly reading recommendations", "Member-only events access"
]
},
{
id: "pro", badge: "Premium", badgeIcon: Sparkles,
price: "₹399/mo", subtitle: "Best for avid readers and enthusiasts", buttons: [
@@ -120,6 +110,16 @@ export default function LandingPage() {
"Borrow up to 20 books per month", "Priority access to new releases", "Digital library + audiobooks", "Exclusive member workshops", "Personalized reading lists", "Priority customer support"
]
},
{
id: "basic", badge: "Student", badgeIcon: BookMarked,
price: "₹199/mo", subtitle: "Perfect for students and casual readers", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More" }
],
features: [
"Borrow up to 5 books per month", "Access to digital library", "Free late fees policy", "Monthly reading recommendations", "Member-only events access"
]
},
{
id: "enterprise", badge: "Institutional", badgeIcon: Award,
price: "Custom", subtitle: "For schools, organizations, and businesses", buttons: [
@@ -225,4 +225,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}