10 Commits

Author SHA1 Message Date
622940adde Update src/app/page.tsx 2026-04-05 23:25:22 +00:00
523463c4ab Update src/app/about/page.tsx 2026-04-05 23:25:22 +00:00
ef486a35d5 Update src/app/page.tsx 2026-04-05 23:24:58 +00:00
8fb2d2f1f8 Add src/app/about/page.tsx 2026-04-05 23:24:57 +00:00
c9393e6745 Merge version_4 into main
Merge version_4 into main
2026-04-05 23:11:23 +00:00
423fa31e07 Update src/app/page.tsx 2026-04-05 23:11:20 +00:00
793740da69 Merge version_3 into main
Merge version_3 into main
2026-04-05 23:10:35 +00:00
75a0af4695 Update src/app/page.tsx 2026-04-05 23:10:29 +00:00
e08148b309 Merge version_2 into main
Merge version_2 into main
2026-04-05 23:09:13 +00:00
d1c22f7a3a Merge version_2 into main
Merge version_2 into main
2026-04-05 23:08:38 +00:00
2 changed files with 64 additions and 4 deletions

60
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmallSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Project", id: "/details" },
{ name: "Donate", id: "/donate" },
{ name: "Contact", id: "/contact" },
]}
brandName="Mandir Eagle Project"
/>
</div>
<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"
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=2"
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="SDSV Mandir Eagle Service Project"
columns={[
{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Donate", href: "/donate" }] },
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/contact" }] }
]}
copyrightText="© 2024 Saicharan Kotturu"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -30,7 +30,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "About", id: "/about" },
{ name: "Project", id: "details" },
{ name: "Donate", id: "donate" },
{ name: "Contact", id: "contact" },
@@ -55,7 +55,7 @@ export default function LandingPage() {
title="About Saicharan's Mission"
description="Saicharan Kotturu, a 17-year-old scout, is dedicating his Eagle Scout service project to the SDSV Mandir. This initiative focuses on enhancing site safety and community accessibility through strategic infrastructure improvements."
tag="Our Mission"
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-20840.jpg?_wi=1"
useInvertedBackground={true}
/>
</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: "/#home" }, { label: "Donate", href: "/#donate" }] },
{ title: "Support", items: [{ label: "Troop 424", href: "#" }, { label: "Contact", href: "/#contact" }] }
]}
copyrightText="© 2024 Saicharan Kotturu"
/>