13 Commits

Author SHA1 Message Date
cfbf50b60b Merge version_11 into main
Merge version_11 into main
2026-04-06 17:02:10 +00:00
673dddef2f Update src/app/page.tsx 2026-04-06 17:02:07 +00:00
9c0206b619 Update src/app/donate/page.tsx 2026-04-06 17:02:06 +00:00
2562ee2ee3 Update src/app/about/page.tsx 2026-04-06 17:02:06 +00:00
bba79c3b2c Merge version_10 into main
Merge version_10 into main
2026-04-06 16:57:08 +00:00
924335e0c8 Update src/app/donate/page.tsx 2026-04-06 16:57:02 +00:00
4242c6a15e Merge version_9 into main
Merge version_9 into main
2026-04-06 16:54:13 +00:00
9d68d82abf Update src/app/page.tsx 2026-04-06 16:54:10 +00:00
85f5c51f8b Merge version_8 into main
Merge version_8 into main
2026-04-06 15:36:04 +00:00
87a3e0afda Update src/app/page.tsx 2026-04-06 15:36:01 +00:00
9db6a8595f Update src/app/donate/page.tsx 2026-04-06 15:36:01 +00:00
5be7a600eb Update src/app/about/page.tsx 2026-04-06 15:36:00 +00:00
4cb24b0893 Merge version_7 into main
Merge version_7 into main
2026-04-05 23:35:20 +00:00
3 changed files with 34 additions and 36 deletions

View File

@@ -25,10 +25,8 @@ export default function AboutPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "About", id: "about" }, { name: "About", id: "/about" },
{ name: "Project", id: "/details" },
{ name: "Donate", id: "/donate" }, { name: "Donate", id: "/donate" },
{ name: "Contact", id: "/contact" },
]} ]}
brandName="Mandir Eagle Project" brandName="Mandir Eagle Project"
/> />
@@ -36,9 +34,9 @@ export default function AboutPage() {
<div id="about" data-section="about" style={{ marginTop: '100px' }}> <div id="about" data-section="about" style={{ marginTop: '100px' }}>
<MediaAbout <MediaAbout
title="Saicharan's Bio & Mission" title="Hi, I'm Saicharan"
description="As a dedicated Scout, Saicharan is driven by a passion for service and community impact. His mission for the SDSV Mandir is to create a safe, accessible, and welcoming environment that reflects the spirit and dedication of our community. Through this Eagle Scout project, he aims to leave a lasting footprint of safety and beauty that supports all devotees and visitors for years to come." description="Hi! I'm a 17 year old, current Life Scout trying to make a positive impact on my community. My unit is Troop 424, as part of Sam Houston Area Council (SHAC). I'd greatly appreciate it if you could help fund my cause!"
tag="Founder Profile" tag="About Me"
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=2"
useInvertedBackground={true} useInvertedBackground={true}
/> />
@@ -48,7 +46,7 @@ export default function AboutPage() {
<FooterBaseReveal <FooterBaseReveal
logoText="SDSV Mandir Eagle Service Project" logoText="SDSV Mandir Eagle Service Project"
columns={[ columns={[
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Donate", href: "/donate" }] }, { title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Donate", href: "/donate" }] },
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] } { title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
]} ]}
copyrightText="© 2024 Saicharan Kotturu" copyrightText="© 2024 Saicharan Kotturu"

View File

@@ -21,16 +21,16 @@ export default function DonatePage() {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<NavbarStyleFullscreen <div id="nav" data-section="nav">
navItems={[ <NavbarStyleFullscreen
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/about" }, { name: "Home", id: "/" },
{ name: "Project", id: "/details" }, { name: "About", id: "/about" },
{ name: "Donate", id: "/donate" }, { name: "Donate", id: "/donate" },
{ name: "Contact", id: "/contact" }, ]}
]} brandName="Mandir Eagle Project"
brandName="Mandir Eagle Project" />
/> </div>
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto text-center"> <main className="pt-32 pb-20 px-6 max-w-4xl mx-auto text-center">
<Heart className="w-16 h-16 mx-auto text-primary mb-6" /> <Heart className="w-16 h-16 mx-auto text-primary mb-6" />
@@ -53,14 +53,16 @@ export default function DonatePage() {
</div> </div>
</main> </main>
<FooterBaseReveal <div id="footer" data-section="footer">
logoText="SDSV Mandir Eagle Service Project" <FooterBaseReveal
columns={[ logoText="SDSV Mandir Eagle Service Project"
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Donate", href: "/donate" }] }, columns={[
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] } { title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Donate", href: "/donate" }] },
]} { title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
copyrightText="© 2024 Saicharan Kotturu" ]}
/> copyrightText="© 2024 Saicharan Kotturu"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -29,11 +29,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "About", id: "about" }, { name: "About", id: "/about" },
{ name: "Project", id: "details" }, { name: "Donate", id: "/donate" },
{ name: "Donate", id: "donate" },
{ name: "Contact", id: "contact" },
]} ]}
brandName="Mandir Eagle Project" brandName="Mandir Eagle Project"
/> />
@@ -44,7 +42,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
title="Light Up Our Temple Community" title="Light Up Our Temple Community"
linkCards={[ linkCards={[
{ title: "Donate via Zelle", description: "Support the project directly with Zelle", button: { text: "Donate", href: "#donate" }, icon: Heart }, { title: "Donate via Zelle", description: "Support the project directly with Zelle", button: { text: "Donate", href: "/donate" }, icon: Heart },
{ title: "View Progress", description: "See project updates and goals", button: { text: "Learn More", href: "#details" }, icon: Target } { title: "View Progress", description: "See project updates and goals", button: { text: "Learn More", href: "#details" }, icon: Target }
]} ]}
/> />
@@ -83,9 +81,9 @@ export default function LandingPage() {
description="Your contributions directly fund the project materials. Please use Zelle at the temple office to contribute." description="Your contributions directly fund the project materials. Please use Zelle at the temple office to contribute."
useInvertedBackground={true} useInvertedBackground={true}
plans={[ plans={[
{ id: "p1", badge: "Supporter", price: "$25", subtitle: "One solar bulb contribution", features: ["Direct solar light support"], buttons: [{ text: "Donate Now", href: "#" }] }, { id: "p1", badge: "Supporter", price: "$25", subtitle: "One solar bulb contribution", features: ["Direct solar light support"], buttons: [{ text: "Donate Now", href: "/donate" }] },
{ id: "p2", badge: "Structural", price: "$100", subtitle: "Signpost materials", features: ["Durable signpost materials"], buttons: [{ text: "Donate Now", href: "#" }] }, { id: "p2", badge: "Structural", price: "$100", subtitle: "Signpost materials", features: ["Durable signpost materials"], buttons: [{ text: "Donate Now", href: "/donate" }] },
{ id: "p3", badge: "Champion", price: "$500", subtitle: "Infrastructure funding", features: ["Complete light assembly"], buttons: [{ text: "Donate Now", href: "#" }] }, { id: "p3", badge: "Champion", price: "$500", subtitle: "Infrastructure funding", features: ["Complete light assembly"], buttons: [{ text: "Donate Now", href: "/donate" }] },
]} ]}
/> />
</div> </div>
@@ -106,8 +104,8 @@ export default function LandingPage() {
<FooterBaseReveal <FooterBaseReveal
logoText="SDSV Mandir Eagle Service Project" logoText="SDSV Mandir Eagle Service Project"
columns={[ columns={[
{ title: "Links", items: [{ label: "Home", href: "/#home" }, { label: "Donate", href: "/#donate" }] }, { title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Donate", href: "/donate" }] },
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/#contact" }] } { title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
]} ]}
copyrightText="© 2024 Saicharan Kotturu" copyrightText="© 2024 Saicharan Kotturu"
/> />