Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions Application/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,23 @@ const OfficerDrawer = ({ member }: { member: typeof boardMembers[0] }) => (
<Separator my={4} />

<Text fontWeight="bold" mb={2}>Goals:</Text>
<List.Root variant="marker">
{member.goals.map((goal, i) => (
<List.Item key={i} fontSize="xs">{goal}</List.Item>
))}
</List.Root>
{member.goals.length > 1 ? (
<List.Root variant="marker">
{member.goals.map((goal, i) => (
<List.Item key={i} fontSize="sm">{goal}</List.Item>
))}
</List.Root>
) : (
<>{member.goals.map((goal) => (
<Text key={goal} fontSize="sm" whiteSpace={"pre-line"}>{goal}</Text>
))}</>


)}
</Box>
</VStack>
</Drawer.Body>
<Drawer.Footer>
<Drawer.CloseTrigger asChild>
<Button variant="outline">Close</Button>
</Drawer.CloseTrigger>
</Drawer.Footer>
</Drawer.Content>
</Drawer.Positioner>
Expand Down
4 changes: 2 additions & 2 deletions Application/data/board-members.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"major": "Computer Science",
"concentration": "Software Engineering",
"goals": [
"Create nad inclusive social platform designe for developers of all background, skill levels, and specialties. It will foster collaboration, learning, and community across every are of software development."
"Create and inclusive social platform designe for developers of all background, skill levels, and specialties. It will foster collaboration, learning, and community across every are of software development."
]
},
{
Expand Down Expand Up @@ -60,7 +60,7 @@
"major": "Computer Science",
"concentration": "Software Engineering",
"goals": [
"Hello, My name is Jacob, and I serve as the Event Coordinator for Coding United while pursuing my B.S. in Computer Science with a concentration in Software Engineering at SNHU. I am passionate about helping individuals who strive for excellence reach their full potential. Since joining Coding United, I have connected with professionals who have challenged and inspired me to continually elevate my technical and professional development. I have always been driven to understand how things work. Whether by deconstructing physical systems or analyzing software applications. I actively research emerging programming languages to deepen my proficiency and expand my technical versatility. My hands-on projects include systems programming on Single Board Computers, web and embedded system security research, and the development of an enterprise-grade home networking lab. I believe there are no limits when you commit to continuous growth. I regularly participate in Capture-The-Flag (CTF) competitions. While they are competitive and engaging, they also strengthen my understanding of cybersecurity principles, including programming challenges, OSINT methodologies, vulnerability analysis, and penetration testing across virtual and embedded systems. Keep pushing, Jacob"
"Hello,\n My name is Jacob, and I serve as the Event Coordinator for Coding United while pursuing my B.S. in Computer Science with a concentration in Software Engineering at SNHU. I am passionate about helping individuals who strive for excellence reach their full potential. Since joining Coding United, I have connected with professionals who have challenged and inspired me to continually elevate my technical and professional development. I have always been driven to understand how things work, whether by deconstructing physical systems or analyzing software applications. I actively research emerging programming languages to deepen my proficiency and expand my technical versatility. My hands-on projects include systems programming on Single Board Computers, web and embedded system security research, and the development of an enterprise-grade home networking lab. I believe there are no limits when you commit to continuous growth. I regularly participate in Capture-The-Flag (CTF) competitions; while they are competitive and engaging, they also strengthen my understanding of cybersecurity principles, including programming challenges, OSINT methodologies, vulnerability analysis, and penetration testing across virtual and embedded systems.\n Keep pushing,\n Jacob"
]
},
{
Expand Down