From 8fb2d2f1f8064a788ad782a6a4caa874e307c718 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 23:24:57 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 60 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..64f452e --- /dev/null +++ b/src/app/about/page.tsx @@ -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 ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From ef486a35d5ff35da50dc0a5c1829332d61e03957 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 23:24:58 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e6854d..695796c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; 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() { return ( @@ -30,7 +30,7 @@ export default function LandingPage() { @@ -65,12 +65,12 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" 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} features={[ - { icon: Target, title: "Safety Signposts", description: "Installing durable signposts for improved site accessibility." }, - { icon: Zap, title: "Solar Lighting", description: "Installing energy-efficient solar-powered posts for night safety." }, - { icon: HandHeart, title: "Community Beautification", description: "Creating a welcoming and safe environment for all visitors." }, + { 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 lighting for enhanced night safety." }, + { icon: HandHeart, title: "Community Beautification", description: "Creating a more welcoming, safe, and aesthetic environment for all visitors." }, ]} /> @@ -79,8 +79,8 @@ export default function LandingPage() { -- 2.49.1