-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEDITME.ts
152 lines (127 loc) · 4.77 KB
/
EDITME.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Site templating configs
/* ----------------- Key Settings to edit each Semester ---------------- */
// registrationLink
// startDate
// endDate
// day1Schedule
// day2Schedule
/* -------------------------------------------------------------------------- */
/* CORE SETTINGS (Update every Hackathon) */
/* -------------------------------------------------------------------------- */
/**
* Registration form link
*/
export const registrationLink = "https://forms.gle/gFwrFeArJmq1YCMH9";
/**
* Start Date of the competition
* Format: MM/DD/YYYY
*/
export const startDate = "04/12/2024";
/**
* End Date of the competition
* Format: MM/DD/YYYY
*/
export const endDate = "04/13/2024";
/**
* Registration Cutoff Time
* Format: 24-hour HH:MM:SS
* The time on day 1 at which the registration form should be closed
*/
export const registrationCutoffTime = "21:00:00";
/**
* Countdown End Time
* Format: 24-hour HH:MM:SS
* The exact time at which the countdown runs out.
*/
export const countdownEndTime = "17:30:00";
/**
* Day 1 and Day 2 Schedules
* Format (Time): H:MM AM|PM
* Each entry in the array is an object with a time and text property.
* The time property is the time of the entry. The text value is what
* what happens at that time.
*/
export const day1Schedule = [
{
time: "TBD",
text: "TBD"
},
];
export const day2Schedule = [
{
time: "TBD",
text: "TBD"
},
];
/* -------------------------------------------------------------------------- */
/* SITE CONTENT */
/* -------------------------------------------------------------------------- */
/**
* Hero Section Subtitle
* This is the text directly underneath the word "HACKATHON" in the first section.
*/
export const subtitle = "Presented by UARK ACM";
/**
* Location Section Text
* Format: Markdown
* This text can be styled using Markdown syntax. It's similar to the syntax used in
* Discord for posts and GitHub for READMEs.
*/
export const locationText = `
Parking is available at the Harmon Avenue Parking Garage adjacent to the JBHT building.
`;
/**
* Location Address Text
* Format: Markdown
* This should match the address link set in locationLink.
* There are some overriding styles here that will remove the spacing between each line.
* Notice the arrow(>) in front of a bit of text. This markdown syntax has been overridden.
* The block quote is meant to apply some extra color on top of any styling placed on that text.
*/
export const locationAddressText = `
> Room 216
J.B. Hunt Transport Services Inc. Center for Academic Excellence (JBHT)
> 227 N. Harmon Ave.
> Fayetteville, AR 72701
`;
/**
* Location Address Link
* This is the link for the "Get Directions" button. This should be a google maps link.
* The address on the resulting page should match the locationAddressText value.
*/
export const locationLink = "https://g.page/JBHT_Building?share";
/**
* Event Details Section Title
*/
export const detailsTitle = "Hack-a-thon (noun)";
/**
* Event Details Section Text
* Format: Markdown
* This text can be styled using Markdown syntax. It's similar to the syntax used in
* Discord for posts and GitHub for READMEs.
* Notice the arrow(>) in front of a bit of text. This markdown syntax has been overridden.
* The block quote is meant to apply some extra color on top of any styling placed on that text.
*/
export const detailsText = `
**The UARK Hackathon** is a competition co-hosted by the *Association of Computing Machinery (ACM)* at the *University of Arkansas*. It’s an overnight software engineering competition that takes place every semester.
**All students are welcome** to take part regardless of school, education level, or major. **All majors and backgrounds are welcome!** Students have a chance to use their skills to create a collaborative project within 24 hours.
Teams compete to develop a working prototype to present in front of a panel of judges. **Judges from different technical backgrounds** are sourced from different companies across NWA.
> Join the next Hackathon and push your limits!
`;
/**
* Details Section Image File Names
* Place images in the public/img directory and update the following variables with the file name(s)
*/
export const image1Name = "image1.jpg";
export const image2Name = "image2.jpg";
export const image3Name = "image3.jpg";
/**
* Footer Text
* If you change this, try to have some sort of direct contact somewhere else on the site.
* UofA students and staff might be able to contact ACM but if an outside company or school
* wants to get involved with the hackathon, they need some visible point of contact on the
* site they can reach out to.
*/
export const footerText = `
For questions, contact <[email protected]>.
`;