Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 622940adde | |||
| 523463c4ab | |||
| ef486a35d5 | |||
| 8fb2d2f1f8 | |||
| c9393e6745 |
60
src/app/about/page.tsx
Normal file
60
src/app/about/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks';
|
|||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||||
import { Target, Zap, Heart, Mail, HandHeart } from 'lucide-react';
|
import { Target, Zap, Heart, HandHeart } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -30,7 +30,7 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "home" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Project", id: "details" },
|
{ name: "Project", id: "details" },
|
||||||
{ name: "Donate", id: "donate" },
|
{ name: "Donate", id: "donate" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
@@ -44,8 +44,8 @@ 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", 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", 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>
|
||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
title="About Saicharan's Mission"
|
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."
|
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"
|
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}
|
useInvertedBackground={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -65,12 +65,12 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
title="Project Impact & Goals"
|
title="Project Impact & Goals"
|
||||||
description="Enhancing the safety and beauty of SDSV Mandir through infrastructure."
|
description="Enhancing the safety and beauty of SDSV Mandir through necessary infrastructure upgrades."
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{ icon: Target, title: "Safety Signposts", description: "Installing durable signposts for improved site accessibility." },
|
{ icon: Target, title: "Safety Signposts", description: "Installing durable signposts for improved site navigation and accessibility." },
|
||||||
{ icon: Zap, title: "Solar Lighting", description: "Installing energy-efficient solar-powered posts for night safety." },
|
{ icon: Zap, title: "Solar Lighting", description: "Installing energy-efficient solar-powered lighting for enhanced night safety." },
|
||||||
{ icon: HandHeart, title: "Community Beautification", description: "Creating a welcoming and safe environment for all visitors." },
|
{ icon: HandHeart, title: "Community Beautification", description: "Creating a more welcoming, safe, and aesthetic environment for all visitors." },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -79,8 +79,8 @@ export default function LandingPage() {
|
|||||||
<PricingCardTwo
|
<PricingCardTwo
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
title="Contribute via Zelle"
|
title="Support via Zelle"
|
||||||
description="Your generous contributions fund essential project materials. Scan the code at the temple office or use the project handle."
|
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: "#" }] },
|
||||||
@@ -94,7 +94,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Contact"
|
tag="Contact"
|
||||||
title="Get Involved"
|
title="Get Involved"
|
||||||
description="Want to help or have questions about the project? Reach out to us today."
|
description="Want to help or have questions about the Eagle Scout project? Reach out to us today."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-girl-doing-remote-classes_23-2148597978.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/woman-girl-doing-remote-classes_23-2148597978.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -106,8 +106,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: "/#home" }, { 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"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user