7 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
3 changed files with 21 additions and 23 deletions

View File

@@ -26,9 +26,7 @@ export default function AboutPage() {
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"
/> />

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: "About", href: "/about" }, { 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

@@ -31,9 +31,7 @@ export default function LandingPage() {
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"
/> />
@@ -45,7 +43,7 @@ export default function LandingPage() {
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 }
]} ]}
/> />
</div> </div>