Skip to content

Commit 13d3897

Browse files
schedule data added
1 parent 38b58eb commit 13d3897

File tree

6 files changed

+99
-34
lines changed

6 files changed

+99
-34
lines changed

public/fonts/mrsmonster.ttf

113 KB
Binary file not shown.

public/fonts/youmurdererbb.ttf

484 KB
Binary file not shown.

public/images/longpost4.png

2.03 MB
Loading

src/index.css

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/Schedule.jsx

+89-34
Original file line numberDiff line numberDiff line change
@@ -8,69 +8,124 @@ const Schedule = () => {
88
const eventSchedules = [
99
[
1010
{
11-
time: "10:00 AM - 11:30 AM",
11+
time: "10:00 AM - 11:00 AM",
1212
event: "Opening Ceremony",
13-
location: "Main Stage",
13+
location: "CR 9",
1414
},
1515
{
16-
time: "12:00 PM - 1:30 PM",
17-
event: "Workshop: Topic 1",
18-
location: "Room A",
16+
time: "11:00 PM - 1:30 PM",
17+
event: "cognition",
18+
location: "CR 9",
1919
},
2020
{
21-
time: "2:00 PM - 3:30 PM",
22-
event: "Panel Discussion: Topic 2",
23-
location: "Room B",
21+
time: "1:00 PM - 5:30 PM",
22+
event: "off road bandits",
23+
location: "COLLEGE ROOF",
24+
},
25+
{
26+
time: "11:00 AM - 5:30 PM",
27+
event: "frame flicks",
28+
location: "CAMPUS",
29+
},
30+
{
31+
time: "2:00 PM - 6:00 PM",
32+
event: "lockout",
33+
location: "CR 7, CR 8",
34+
},
35+
{
36+
time: "5:00 PM - 11:59 PM",
37+
event: "nexus",
38+
location: "CR 3, CR 4",
39+
},
40+
{
41+
time: "5:30 PM - 21:30 PM",
42+
event: "nritya nova",
43+
location: "AMPHI",
2444
},
25-
// Add more events for Day 1 here
2645
],
2746
[
2847
{
29-
time: "9:30 AM - 11:00 AM",
30-
event: "Morning Session",
31-
location: "Main Stage",
48+
time: "00:00 AM - 11:59 PM",
49+
event: "nexus",
50+
location: "CR 3, CR 4",
51+
},
52+
{
53+
time: "00:30 AM - 11:59 PM",
54+
event: "frame flicks",
55+
location: "CAMPUS",
56+
},
57+
{
58+
time: "10:30 AM - 11:00 AM",
59+
event: "Aawaz-e-aawam",
60+
location: "PARKING",
61+
},
62+
{
63+
time: "11:30 AM - 1:30 PM",
64+
event: "story quest R1",
65+
location: "CR 7",
3266
},
3367
{
34-
time: "12:30 PM - 2:00 PM",
35-
event: "Workshop: Topic 3",
36-
location: "Room A",
68+
time: "2:30 PM - 4:30 PM",
69+
event: "story quest r2",
70+
location: "CR 7",
3771
},
3872
{
39-
time: "3:30 PM - 5:00 PM",
40-
event: "Panel Discussion: Topic 4",
41-
location: "Room B",
73+
time: "5:00 PM - 9:30 PM",
74+
event: "anuraag",
75+
location: "AMPHI",
4276
},
43-
// Add more events for Day 2 here
4477
],
4578
[
4679
{
47-
time: "11:00 AM - 12:30 PM",
48-
event: "Workshop: Topic 5",
49-
location: "Room A",
80+
time: "00:00 AM - 6:00 AM",
81+
event: "nexus",
82+
location: "CR 3, CR 4",
83+
},
84+
{
85+
time: "00:00 AM - 5:00 PM",
86+
event: "frame flicks",
87+
location: "CAMPUS",
88+
},
89+
{
90+
time: "10:00 AM - 2:00 PM",
91+
event: "shipwreck",
92+
location: "CR 10",
93+
},
94+
{
95+
time: "2:00 PM - 4:30 PM",
96+
event: "lockout",
97+
location: "CR 7, CR 8",
5098
},
5199
{
52-
time: "1:30 PM - 3:00 PM",
53-
event: "Closing Ceremony",
54-
location: "Main Stage",
100+
time: "5:00 PM - 7:00 PM",
101+
event: "closing ceremony",
102+
location: "PARKING",
103+
},
104+
{
105+
time: "7:00 PM - 10:00 PM",
106+
event: "cultural night",
107+
location: "PARKING",
55108
},
56109
// Add more events for Day 3 here
57110
],
58111
];
59112

60113
return (
61114
<div
62-
className="h-screen flex flex-col"
115+
className="min-h-screen flex flex-col"
63116
style={{
64-
background: "url(/images/longpost3.png)",
65-
backgroundPosition: "right center",
117+
background: "url(/images/longpost4.png), lightgray 50%",
118+
backgroundPosition: "center",
66119
backgroundSize: "cover",
67120
}}
68121
>
69122
<LandingPageNav />
70-
<h1 className="text-white text-6xl font-Horrors text-center">Schedule</h1>
123+
<h1 className="text-white text-7xl font-youmurdererbb text-center">
124+
Event Schedule
125+
</h1>
71126

72127
<div className=" text-white p-4 mx-auto mt-6 rounded-lg shadow-md">
73-
<div className="flex justify-center mb-4 space-x-4">
128+
<div className="flex font-mrsmonster justify-center mb-4 space-x-4">
74129
{eventSchedules.map((_, index) => (
75130
<button
76131
key={index}
@@ -86,20 +141,20 @@ const Schedule = () => {
86141
))}
87142
</div>
88143

89-
<div className="overflow-x-auto">
144+
<div className="overflow-x-auto font-mrsmonster text-xl">
90145
<table className="w-full table-auto">
91-
<thead>
146+
<thead className="font-Horrors">
92147
<tr>
93-
<th className="px-4 py-2">Time</th>
94148
<th className="px-4 py-2">Event</th>
149+
<th className="px-4 py-2">Time</th>
95150
<th className="px-4 py-2">Location</th>
96151
</tr>
97152
</thead>
98153
<tbody>
99154
{eventSchedules[activeDay - 1].map((event, index) => (
100155
<tr key={index}>
101-
<td className="px-4 py-2 sm:px-6 sm:py-3">{event.time}</td>
102156
<td className="px-4 py-2 sm:px-6 sm:py-3">{event.event}</td>
157+
<td className="px-4 py-2 sm:px-6 sm:py-3">{event.time}</td>
103158
<td className="px-4 py-2 sm:px-6 sm:py-3">
104159
{event.location}
105160
</td>

tailwind.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ export default {
2323
punishment: ["Punishment", "cursive"],
2424
harryp: ["HARRYP", "cursive"],
2525
Horrors: ["Horrors", "cursive"],
26+
mrsmonster: ["mrsmonster", "cursive"],
27+
youmurdererbb: ["youmurdererbb", "cursive"],
2628
},
2729
colors: {
2830
lockoutred: "#571d20",

0 commit comments

Comments
 (0)