Update src/app/about/page.tsx

This commit is contained in:
2026-05-12 18:31:29 +00:00
parent 5268fc0a13
commit f2af8659a4

View File

@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Colleges",
id: "/colleges",
},
{
name: "Blog",
id: "/blog",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "Colleges", id: "/colleges" },
{ name: "Blog", id: "/blog" },
{ name: "About", id: "/about" },
]}
brandName="Study in Nagaland"
/>
@@ -64,18 +52,8 @@ export default function LandingPage() {
title="Meet Our Team"
description="The passionate individuals behind our success."
team={[
{
id: "t1",
name: "Kevi M.",
role: "Founder",
imageSrc: "http://img.b2bpic.net/free-photo/cute-shot-friends-joking-laughing-together-spreading-positivity-around_181624-21423.jpg",
},
{
id: "t2",
name: "Sara T.",
role: "Lead Counselor",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-caucasian-man-with-headphones-backpack-holding-laptop-wearing-medical-mask-looking_1258-155431.jpg",
},
{ id: "t1", name: "Kevi M.", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/cute-shot-friends-joking-laughing-together-spreading-positivity-around_181624-21423.jpg" },
{ id: "t2", name: "Sara T.", role: "Lead Counselor", imageSrc: "http://img.b2bpic.net/free-photo/handsome-caucasian-man-with-headphones-backpack-holding-laptop-wearing-medical-mask-looking_1258-155431.jpg" },
]}
/>
</div>
@@ -85,32 +63,12 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/books-knowledge-study-education-word-graphic_53876-124730.jpg?_wi=4"
logoText="Study in Nagaland"
columns={[
{
title: "For Students",
items: [
{
label: "Search Colleges",
href: "/colleges",
},
{
label: "Blog",
href: "/blog",
},
],
},
{
title: "For Institutions",
items: [
{
label: "List Your College",
href: "/for-institutions",
},
],
},
{ title: "For Students", items: [{ label: "Search Colleges", href: "/colleges" }, { label: "Blog", href: "/blog" }] },
{ title: "For Institutions", items: [{ label: "List Your College", href: "/for-institutions" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}