Skip to content

Commit 85233bb

Browse files
committed
feat: add constitution link
1 parent 85e1072 commit 85233bb

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

src/components/footer.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Picture } from 'astro:assets'
33
import LogoLight from '../assets/logo-light.png'
44
5-
import { socialLinks, clubEmail, footerLinks, sponsorLinks, websiteRepo } from '../data'
5+
import { socialLinks, clubEmail, footerLinks, sponsorLinks, websiteRepo, nonprofitEIN } from '../data'
66
77
import childProcess from 'child_process'
88
@@ -75,7 +75,7 @@ const hash = childProcess.execSync('git rev-parse --short HEAD').toString().trim
7575
}
7676
</div>
7777
<p>
78-
Comet Robotics is a registered 501(c)3 nonprofit (EIN: 93-3183820). The Altium Corporate Logo is a trademark of
78+
Comet Robotics is a registered 501(c)3 nonprofit (EIN: {nonprofitEIN}). The Altium Corporate Logo is a trademark of
7979
Altium LLC and is used here with permission.
8080
</p>
8181
<p>

src/data.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ const discordInvite = 'https://discord.gg/dTGwav3PVM'
158158

159159
const makerspaceMap = 'https://g.page/utdesign-makerspace?share'
160160
const websiteRepo = 'https://github.com/Comet-Robotics/cometrobotics.org'
161+
const constitutionPublicLink = 'https://docs.google.com/document/d/e/2PACX-1vTnubb0Wm1t4l-P3Gnke43ZHeZfKCeEXv5TGthu8uZZo4IYKOWJVr3DWYRQN0_SkjAH5vNldMvIBnGw/pub'
162+
const nonprofitEIN = '93-3183820'
163+
161164
const footerLinks: LinkType[] = [
162165
{
163166
name: 'Discord',
@@ -175,6 +178,10 @@ const footerLinks: LinkType[] = [
175178
name: 'Sponsorship',
176179
href: '/sponsor',
177180
},
181+
{
182+
name: 'Constitution',
183+
href: constitutionPublicLink,
184+
}
178185
]
179186

180187
const linksPageLinks: LinkType[] = [
@@ -252,4 +259,4 @@ const combatTeams = [
252259
},
253260
]
254261

255-
export { clubEmail, combatTeams, competitiveTeams, discordInvite, footerLinks, HOME_LINK, instagramURL, leadership, linksPageLinks, mainNavLinks, makerspaceMap, socialLinks, sponsorLinks, websiteRepo }
262+
export { clubEmail, combatTeams, competitiveTeams, discordInvite, footerLinks, HOME_LINK, instagramURL, leadership, linksPageLinks, mainNavLinks, makerspaceMap, socialLinks, sponsorLinks, constitutionPublicLink, websiteRepo, nonprofitEIN }

src/pages/about.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ layout: ../layouts/markdown.astro
33
title: About
44
subtitle: More about the club and its history
55
---
6-
import { leadership } from '../data'
6+
import { leadership, constitutionPublicLink, nonprofitEIN } from '../data'
77

88
# Who we are
99

10-
Comet Robotics at UT Dallas is a student organization with the goal of promoting robotics at UT Dallas and in the surrounding area through outreach, projects and workshops. We compete with colleges and universities across the globe in combat robotics competitions, and programs like VEX U and University Rover Challenge.
10+
Comet Robotics is a student organization with the goal of promoting robotics at UT Dallas and in the surrounding area through outreach, projects and workshops. We compete with colleges and universities across the globe in combat robotics competitions, and programs like VEX U and University Rover Challenge.
1111

1212
With membership open to all students regardless of major or prior experience in robotics, we provide students with the opportunity to collaborate and compete with like-minded individuals to gain experience and refine their knowledge of designing, building, and programming robots. As an organization, we aim to build and sustain an engaged body of students hoping to expand upon their coursework and gain real-world experience, developing skills in project management, leadership, teamwork, and much more.
1313

@@ -39,6 +39,11 @@ The organization is led as a whole by the President, Vice President and other su
3939
</>
4040
))}
4141

42+
### Governance
43+
44+
Comet Robotics is a registered student organization at the University of Texas at Dallas under the Student Organization Center. Policies and standard operating procedures for the organization are documented in the {<a href={constitutionPublicLink}>student organization constitution</a>} and student organization bylaws. Comet Robotics is also a registered 501(c)(3) non-profit (EIN: {nonprofitEIN}) which is governed by a separate board and bylaws.
45+
46+
4247
# Achievements
4348

4449
## 2023-2024

0 commit comments

Comments
 (0)