Update src/app/about/page.tsx

This commit is contained in:
2026-05-06 10:23:23 +00:00
parent de1bfe6dab
commit 75b99f4eaa

View File

@@ -6,7 +6,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -21,79 +21,32 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<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",
},
]}
brandName="Jhapa District"
/>
</div>
<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" } ]}
brandName="Jhapa District"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
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="about" data-section="about">
<MediaAbout
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",
},
],
},
]}
copyrightText="© 2024 Jhapa District Portal. All rights reserved."
/>
</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" }] } ]}
copyrightText="© 2024 Jhapa District Portal. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}