8 Commits

Author SHA1 Message Date
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
375e952de9 Update src/app/donate/page.tsx 2026-04-05 23:35:17 +00:00
7e0448af63 Merge version_6 into main
Merge version_6 into main
2026-04-05 23:31:27 +00:00
3 changed files with 31 additions and 20 deletions

View File

@@ -25,7 +25,7 @@ export default function AboutPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "About", id: "/about" },
{ name: "Project", id: "/details" },
{ name: "Donate", id: "/donate" },
{ name: "Contact", id: "/contact" },
@@ -36,9 +36,9 @@ export default function AboutPage() {
<div id="about" data-section="about" style={{ marginTop: '100px' }}>
<MediaAbout
title="Saicharan's Bio & Mission"
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."
tag="Founder Profile"
title="Hi, I'm Saicharan"
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="About Me"
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=2"
useInvertedBackground={true}
/>
@@ -48,7 +48,7 @@ export default function AboutPage() {
<FooterBaseReveal
logoText="SDSV Mandir Eagle Service Project"
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" }] }
]}
copyrightText="© 2024 Saicharan Kotturu"

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Heart } from 'lucide-react';
import { Heart, Mail, Phone } from 'lucide-react';
export default function DonatePage() {
return (
@@ -38,14 +38,25 @@ export default function DonatePage() {
<p className="text-xl mb-8">Your support helps us complete this Eagle Scout service project. Please use the following details to contribute via Zelle:</p>
<div className="bg-card p-8 rounded-2xl shadow-lg border inline-block">
<p className="text-sm uppercase tracking-wider mb-2">Zelle Number</p>
<p className="text-3xl font-mono font-bold">678-982-1480</p>
<p className="text-3xl font-mono font-bold mb-4">678-982-1480</p>
<div className="group relative inline-flex items-center justify-center gap-2 cursor-pointer">
<Mail className="w-5 h-5" />
<span className="font-medium text-lg">Contact for Questions</span>
<span className="absolute bottom-full left-1/2 -translate-x-1/2 mb-2 px-3 py-1 bg-black text-white text-xs rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap">
saicharan.kotturu@gmail.com
</span>
</div>
<div className="flex items-center justify-center gap-2 mt-3 text-lg font-medium">
<Phone className="w-5 h-5" />
<span>346-387-2636</span>
</div>
</div>
</main>
<FooterBaseReveal
logoText="SDSV Mandir Eagle Service Project"
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" }] }
]}
copyrightText="© 2024 Saicharan Kotturu"

View File

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