diff --git a/Application/app/data.ts b/Application/app/data.ts index e4136f1..81910d7 100644 --- a/Application/app/data.ts +++ b/Application/app/data.ts @@ -1,7 +1,7 @@ export const clubFeatures = [ - [{ + { title: "Club Projects", bgColor: "blue.600", items: [ @@ -31,8 +31,7 @@ export const clubFeatures = [ "Helps develop well-rounded, adaptable developers", ], }, -], -[ + { title: "Coding Education and Guidance", bgColor: "blue.600", @@ -63,5 +62,23 @@ export const clubFeatures = [ "Build valuable communication and leadership skills along the way", ] }, -] + { + title: "Mentorship Program", + bgColor: "blue.600", + items: [ + "COMING SOON", + "Connect with more experienced members for personalized guidance and support", + "Mentors can help work through challenges you might be facing in you journey", + "Mentors can not do the work for you, but they can help point you in the right direction" + ] + }, + { + title: "Ambassador Program", + bgColor: "blue.600", + items: [ + "COMING SOON", + "Work directly with the club leadership and project leads to help promote club initiatives", + "Gain experience in leadership and communication skills", + ] + } ] \ No newline at end of file diff --git a/Application/app/page.tsx b/Application/app/page.tsx index 8e3c17d..4167d5b 100644 --- a/Application/app/page.tsx +++ b/Application/app/page.tsx @@ -1,11 +1,13 @@ +"use client"; import PageBuilder from "@/components/ui/page-builder"; import PageBuilderFooter from "@/components/ui/page-builder/template-builder/footer-template"; import Image from "next/image"; import { clubFeatures } from "@/app/data"; import { FeatureCard } from "@/components/cards/feature-card"; -import React from "react"; -import { Box, Heading, Text, Separator, Container, VStack, Carousel, IconButton } from '@chakra-ui/react'; -import { LuChevronLeft, LuChevronRight } from "react-icons/lu" +import React, { useEffect, useState } from "react"; +import { Box, Heading, Text, Separator, Container, VStack, Carousel, IconButton, SimpleGrid } from '@chakra-ui/react'; +import { LuChevronLeft, LuChevronRight } from "react-icons/lu"; + export default function Home() { @@ -34,13 +36,13 @@ export default function Home() { {/* */} - + Welcome to Coding United - + - + A student-led tech club dedicated to building real-world projects, supporting academic success, and growing together through hands-on coding, curiosity, and collaboration. @@ -78,34 +80,30 @@ export default function Home() { const allFeatures = clubFeatures.flat(); -const FeatureCarousel = () => { - return ( - - - {allFeatures.map((feature, index) => ( - - - - - - ))} - - - - - - - - - +const FeatureCarousel = () => { - - - - - - - - ) -} + return ( + + + + + {allFeatures.map((feature, index) => ( + + ))} + + + + + ); +};