Update src/app/chapter/page.tsx

This commit is contained in:
2026-06-08 00:06:44 +00:00
parent ba538621ed
commit 66e25b6064

View File

@@ -26,27 +26,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Events",
id: "/events",
},
name: "Events", id: "/events"},
{
name: "Chapters",
id: "/chapter",
},
name: "Chapters", id: "/chapter"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/top-view-elections-concept-with-sign_23-2148499933.jpg"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EpWuLQrdKe7CGSmTG6T2l1Ypvr/uploaded-1780877157402-ru83wxqx.jpg"
logoAlt="Controversy Meets Conversation Logo"
brandName="CMC"
/>
@@ -60,23 +50,11 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Empower Students",
description: "Develop leadership and communication skills in a supportive environment.",
imageSrc: "http://img.b2bpic.net/free-photo/african-american-schoolboy-using-hands-sanitizer-classroom_637285-8706.jpg",
imageAlt: "Students collaborating on a project in a school setting",
},
title: "Empower Students", description: "Develop leadership and communication skills in a supportive environment.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-schoolboy-using-hands-sanitizer-classroom_637285-8706.jpg", imageAlt: "Students collaborating on a project in a school setting"},
{
title: "Curriculum Support",
description: "Access resources and guidance to integrate civic discourse into your school's programs.",
imageSrc: "http://img.b2bpic.net/free-photo/leadership-leader-authoritarian-management-trainer-concept_53876-123784.jpg",
imageAlt: "Teacher helping students with their work",
},
title: "Curriculum Support", description: "Access resources and guidance to integrate civic discourse into your school's programs.", imageSrc: "http://img.b2bpic.net/free-photo/leadership-leader-authoritarian-management-trainer-concept_53876-123784.jpg", imageAlt: "Teacher helping students with their work"},
{
title: "National Network",
description: "Connect with other chapters and share best practices across the country.",
imageSrc: "http://img.b2bpic.net/free-photo/charming-female-student-with-blonde-hair-glasses-standing-classmates-looking-with-smile-asian-boy-blissful-friends-discussing-exams-outdoor_197531-3867.jpg",
imageAlt: "Diverse group of students on a school campus",
},
title: "National Network", description: "Connect with other chapters and share best practices across the country.", imageSrc: "http://img.b2bpic.net/free-photo/charming-female-student-with-blonde-hair-glasses-standing-classmates-looking-with-smile-asian-boy-blissful-friends-discussing-exams-outdoor_197531-3867.jpg", imageAlt: "Diverse group of students on a school campus"},
]}
title="Bring CMC to Your School"
description="Empower students to engage in critical thinking, respectful dialogue, and community building by starting a Controversy Meets Conversation chapter at your educational institution."
@@ -88,20 +66,11 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What are the requirements to start a chapter?",
content: "Typically, you'll need a faculty advisor, a core group of interested students, and a commitment to our mission of civic discourse.",
},
id: "1", title: "What are the requirements to start a chapter?", content: "Typically, you'll need a faculty advisor, a core group of interested students, and a commitment to our mission of civic discourse."},
{
id: "2",
title: "What support does CMC provide?",
content: "We offer guidance on event planning, curriculum resources, training for student leaders, and marketing materials.",
},
id: "2", title: "What support does CMC provide?", content: "We offer guidance on event planning, curriculum resources, training for student leaders, and marketing materials."},
{
id: "3",
title: "How long does it take to establish a chapter?",
content: "The process varies by school, but we work to make it as streamlined as possible, typically a few weeks to a couple of months.",
},
id: "3", title: "How long does it take to establish a chapter?", content: "The process varies by school, but we work to make it as streamlined as possible, typically a few weeks to a couple of months."},
]}
sideTitle="Starting a CMC Chapter"
sideDescription="Have questions about bringing Controversy Meets Conversation to your school? Find your answers here."
@@ -113,67 +82,42 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseCard
logoSrc="http://img.b2bpic.net/free-photo/top-view-elections-concept-with-sign_23-2148499933.jpg"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EpWuLQrdKe7CGSmTG6T2l1Ypvr/uploaded-1780877157402-ru83wxqx.jpg"
logoAlt="CMC Logo"
logoText="Controversy Meets Conversation"
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Events",
href: "/events",
},
label: "Events", href: "/events"},
{
label: "Start a Chapter",
href: "/chapter",
},
label: "Start a Chapter", href: "/chapter"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#"},
{
label: "Volunteer",
href: "#",
},
label: "Volunteer", href: "#"},
{
label: "Donate",
href: "#",
},
label: "Donate", href: "#"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "LinkedIn",
href: "#",
},
label: "LinkedIn", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
],
},
]}
@@ -183,4 +127,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}