Update src/app/blog/page.tsx

This commit is contained in:
2026-05-12 18:33:12 +00:00
parent 04426286e3
commit abb6da89f6

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"
/>
@@ -54,26 +42,8 @@ export default function LandingPage() {
title="Latest Insights"
description="Stay updated with news and admission alerts."
blogs={[
{
id: "nb1",
category: "Admissions",
title: "Entrance Test Prep Guide",
excerpt: "How to clear state-level entrance exams.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-academic-cap-glasses-with-globe_23-2148756568.jpg",
authorName: "Edu Expert",
authorAvatar: "http://img.b2bpic.net/free-photo/people-work-education-concept-cheerful-attractive-redhead-female-student-glasses-studying-rem_1258-144396.jpg",
date: "2025-03-05",
},
{
id: "nb2",
category: "Scholarships",
title: "Funding Your Education",
excerpt: "Government schemes every student should know.",
imageSrc: "http://img.b2bpic.net/free-photo/talented-creative-goodlooking-redhead-woman-writing-poem-story-taking-notes-prepare-grocery-list-gas_1258-139234.jpg",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/dreamy-inspirational-cute-redhead-female-student-writing-daily-tasks-todo-list-red-lovely-planner_1258-126343.jpg",
date: "2025-03-10",
},
{ id: "nb1", category: "Admissions", title: "Entrance Test Prep Guide", excerpt: "How to clear state-level entrance exams.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-academic-cap-glasses-with-globe_23-2148756568.jpg", authorName: "Edu Expert", authorAvatar: "http://img.b2bpic.net/free-photo/people-work-education-concept-cheerful-attractive-redhead-female-student-glasses-studying-rem_1258-144396.jpg", date: "2025-03-05" },
{ id: "nb2", category: "Scholarships", title: "Funding Your Education", excerpt: "Government schemes every student should know.", imageSrc: "http://img.b2bpic.net/free-photo/talented-creative-goodlooking-redhead-woman-writing-poem-story-taking-notes-prepare-grocery-list-gas_1258-139234.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/dreamy-inspirational-cute-redhead-female-student-writing-daily-tasks-todo-list-red-lovely-planner_1258-126343.jpg", date: "2025-03-10" },
]}
/>
</div>
@@ -86,16 +56,8 @@ export default function LandingPage() {
description="Common questions regarding blog content."
faqsAnimation="blur-reveal"
faqs={[
{
id: "f1",
title: "How often are articles updated?",
content: "We refresh our blog content weekly.",
},
{
id: "f2",
title: "Can I write for you?",
content: "Yes, reach out via our contact page to contribute.",
},
{ id: "f1", title: "How often are articles updated?", content: "We refresh our blog content weekly." },
{ id: "f2", title: "Can I write for you?", content: "Yes, reach out via our contact page to contribute." },
]}
/>
</div>
@@ -105,32 +67,12 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/books-knowledge-study-education-word-graphic_53876-124730.jpg?_wi=3"
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>
);
}
}