Update src/app/about/page.tsx

This commit is contained in:
2026-05-06 10:25:44 +00:00
parent d57ad122bb
commit d5a03bb6b1

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MediaAbout from '@/components/sections/about/MediaAbout';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AboutPage() {
return (
@@ -23,26 +23,35 @@ export default function AboutPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Municipalities", id: "/municipalities" }, { name: "Gallery", id: "/gallery" }, { name: "Contact", id: "/contact" } ]}
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Municipalities", id: "/municipalities" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Jhapa District"
button={{ text: "Contact Us", href: "/contact" }}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
<TextSplitAbout
title="About Jhapa District"
description={[
"Jhapa is the easternmost district of Nepal, known as the gateway to the country.", "It is a vibrant region with fertile plains, extensive tea plantations, and a rich cultural mosaic.", "Our district plays a pivotal role in Nepal's agricultural economy and serves as a major trade hub for the region."
]}
useInvertedBackground={false}
title="About Our District"
description="Jhapa is the easternmost district of Nepal, known for its extensive tea plantations, religious diversity, and strategic trade route location."
imageSrc="http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552629.jpg"
imageAlt="Jhapa district culture tradition"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Jhapa District"
columns={[ { title: "Explore", items: [{ label: "About", href: "/about" }, { label: "Municipalities", href: "/municipalities" }] }, { title: "Information", items: [{ label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] } ]}
columns={[
{ title: "Explore", items: [{ label: "About", href: "/about" }, { label: "Municipalities", href: "/municipalities" }] },
{ title: "Information", items: [{ label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] },
]}
copyrightText="© 2024 Jhapa District Portal. All rights reserved."
/>
</div>