Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-03-03 07:06:07 +00:00
parent e1fa7d2335
commit f6216d5c0b

View File

@@ -28,11 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Donate", id: "/donate" }
{ name: "Home", id: "home" },
{ name: "About Us", id: "about" },
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" },
{ name: "Donate", id: "donate" }
]}
brandName="Nanjil Oasis"
bottomLeftText="Est. 2009"
@@ -48,8 +48,8 @@ export default function LandingPage() {
tagIcon={Heart}
tagAnimation="slide-up"
buttons={[
{ text: "Donate Now", href: "/donate" },
{ text: "Our Journey", href: "/about" }
{ text: "Donate Now", href: "#donate" },
{ text: "Our Journey", href: "#about" }
]}
buttonAnimation="slide-up"
carouselItems={[
@@ -145,27 +145,27 @@ export default function LandingPage() {
tagAnimation="slide-up"
plans={[
{
id: "500", badge: "Support", price: "₹500", subtitle: "Provides one session of therapy", buttons: [{ text: "Donate ₹500", href: "/donate" }],
id: "500", badge: "Support", price: "₹500", subtitle: "Provides one session of therapy", buttons: [{ text: "Donate ₹500", href: "#" }],
features: ["One therapy session", "Direct impact on a child", "Monthly impact report"]
},
{
id: "1000", badge: "Care", price: "₹1,000", subtitle: "Supports a week of meals and therapy", buttons: [{ text: "Donate ₹1,000", href: "/donate" }],
id: "1000", badge: "Care", price: "₹1,000", subtitle: "Supports a week of meals and therapy", buttons: [{ text: "Donate ₹1,000", href: "#" }],
features: ["Weekly nutrition support", "Ongoing therapy sessions", "Progress updates"]
},
{
id: "2500", badge: "Build", price: "₹2,500", subtitle: "Provides monthly educational supplies", buttons: [{ text: "Donate ₹2,500", href: "/donate" }],
id: "2500", badge: "Build", price: "₹2,500", subtitle: "Provides monthly educational supplies", buttons: [{ text: "Donate ₹2,500", href: "#" }],
features: ["Monthly school supplies", "Personalized learning materials", "Quarterly impact newsletter"]
},
{
id: "5000", badge: "Transform", badgeIcon: Zap,
price: "₹5,000", subtitle: "Transforms a child's entire month", buttons: [{ text: "Donate ₹5,000", href: "/donate" }],
price: "₹5,000", subtitle: "Transforms a child's entire month", buttons: [{ text: "Donate ₹5,000", href: "#" }],
features: ["Complete monthly support", "All therapies & education", "Named sponsorship option"]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Custom Donation", href: "/donate" }]}
buttons={[{ text: "Custom Donation", href: "#" }]}
buttonAnimation="slide-up"
ariaLabel="Donation options and contribution tiers"
/>
@@ -206,15 +206,15 @@ export default function LandingPage() {
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" }
{ label: "Home", href: "#home" },
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Donate", items: [
{ label: "Make a Donation", href: "/donate" },
{ label: "Make a Donation", href: "#donate" },
{ label: "Become a Partner", href: "mailto:nanjiloasismrc@gmail.com" },
{ label: "Bank Transfer Details", href: "#" }
]