Skip to content

Commit 71bdb41

Browse files
committed
feat: Update description and member titles
1 parent aff90fc commit 71bdb41

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

content/about/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ authors:
1111
- "Angad Behl"
1212
---
1313

14-
We are The Oshkosh Hack Club, also known as WeCreate, fiscally sponsored by _The Hack Foundation_.
15-
14+
Welcome to the Oshkosh Hack Club! We are The Oshkosh Hack Club, also known as WeCreate, a nonprofit fiscally sponsored by _The Hack Foundation_.
15+
1616
**Established in 2024, we set out on a mission** to solve a problem in our community; The lack of interest in computer science. We wish to empower young engineers in the Oshkosh area to use computers to plan, make, and ship personal projects by helping them learn about computers, software, and hardware.
1717

1818
Partnered with the [Oshkosh Public Library](https://www.oshkoshpubliclibrary.org/), we will be holding free and public meetings every other week open to all students up to 12th grade. We hope to inspire these students to learn more about engineering and computing through hands-on projects, giving them the crucial real-world experience required to succeed and excel in computer science.
1919

20-
Our first meeting is Saturday, September 7th, and subsequent meetings take place every other saturday.
20+
Our first meeting is Saturday, September 7th, and subsequent meetings take place every other Saturday.
2121

2222
### Leadership
2323
{{<member>}}

data/members.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
- name: "Michael H."
2-
description: "Co-lead"
2+
description: "Co-founder / Co-lead"
33
image: ""
44
- name: "Angad Behl"
5-
description: "President and Founder"
5+
description: "Founder / Co-lead"
66
# image: "angad.jpg"
77
link: "https://angad.me"
88
- name: "Eli N."
9-
description: "Co-lead"
10-
image: ""
9+
description: "Co-founder / Co-lead"

hugo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ enableGitInfo = true
1111
[params]
1212
gitUrl = "https://github.com/wecreatefyi/site/commit/"
1313
# Metadata mostly used in document's head
14-
description = "The official website of WeCreate, the Oshkosh Hack Club."
14+
description = "Welcome to the Oshkosh Hack Club! We are The Oshkosh Hack Club, also known as WeCreate, a nonprofit fiscally sponsored by The Hack Foundation."
1515
images = [""]
1616

1717
# Subtitle for home
@@ -63,6 +63,11 @@ url = "/about"
6363
identifier = "finances"
6464
name = "Public Finances"
6565
url = "https://hcb.hackclub.com/oshkosh-hack-club"
66+
[[menu.main]]
67+
identifier = "donate"
68+
name = "Donate"
69+
url = "https://hcb.hackclub.com/donations/start/oshkosh-hack-club"
70+
6671

6772
[frontmatter]
6873
# Commenting out as the hello-friend-ng theme already uses Git info when gitInfo is enabled

layouts/shortcodes/member.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="member-info">
1111
<h3 class="member-name">
1212
{{ if .link }}
13-
<a href="{{ .link }}">{{ .name }}</a>
13+
<a class="member-link" href="{{ .link }}">{{ .name }}</a>
1414
{{ else }}
1515
{{ .name }}
1616
{{ end }}
@@ -77,7 +77,7 @@ <h3 class="member-name">
7777
flex: 0 1 100%;
7878
}
7979
}
80-
a {
80+
.member-link {
8181
text-decoration: underline;
8282
display: inline-block;
8383
margin-right: 15px;
@@ -86,7 +86,7 @@ <h3 class="member-name">
8686
border-radius: 5px;
8787
transition: background-color 0.3s, color 0.3s;
8888
}
89-
a:hover {
89+
.member-link:hover {
9090
background-color: #4a90e2; /* Light blue background on hover */
9191
color: #ffffff; /* Ensure text color remains white on hover */
9292
}

0 commit comments

Comments
 (0)