forked from Roshan11032005/QUBIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
1466 lines (1258 loc) · 55.3 KB
/
main.py
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import streamlit as st
# Set up the page title, layout, and theme
st.set_page_config(page_title="Qubit - MGIT Technical Fest", layout="centered")
# Initialize session state for page navigation
if "page" not in st.session_state:
st.session_state.page = "Home"
# CSS for custom styles
st.markdown("""
<style>
/* Background and title color */
.css-18e3th9 h1 { color: #FF4500; }
.css-18e3th9, .css-1d391kg, .css-1j49p6r { background-color: #111; color: #fff; }
/* Button styling */
.css-18e3th9 button {
background-color: #FF4500;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
}
</style>
""", unsafe_allow_html=True)
# Show balloons when the page loads
st.balloons()
# Home Page
if st.session_state.page == "Home":
st.markdown(
"""
<div style="display: flex; justify-content: center;">
<img src="https://github.com/Roshan11032005/QUBIT/blob/main/WhatsApp%20Image%202024-11-07%20at%207.12.18%20PM-removebg-preview.jpg?raw=true" alt="Logo" style="width:100px;">
</div>
""",
unsafe_allow_html=True
)
st.markdown(
"<h1 style='text-align: center; font-size: 50px; color: #4A90E2;'>Welcome to Qubit 2024!</h1>",
unsafe_allow_html=True
)
# Fest Title
# Tagline and Fest Intro
st.markdown("""
<div style='text-align: center; font-size: 24px; margin-top: -20px;'>
<em>The Ultimate Tech Fest at Mahatma Gandhi Institute of Technology</em>
</div>
""", unsafe_allow_html=True)
# Main Content
st.write("""
**Qubit 2024** is back, and it's bigger and better! Join us for a thrilling two-day event packed with exciting competitions, cutting-edge workshops, and unforgettable experiences where technology, creativity, and passion collide.
""")
# Why Attend Section with Key Highlights
st.markdown("<h2 style='color: #FF6347;'>Why Attend Qubit 2024?</h2>", unsafe_allow_html=True)
st.write("""
- **Inspiration from Industry Leaders**: Gain insights from expert speakers and learn about the latest in technology.
- **Unleash Your Potential**: Showcase your skills in competitions designed to challenge and inspire.
- **Collaborate and Connect**: Build your network with tech enthusiasts, industry professionals, and peers.
- **Exciting Prizes and Recognition**: Compete for amazing prizes and take home the glory!
- **Fun and Festivity**: Enjoy entertainment, games, and a chance to make lasting memories.
""")
# Registration and Event List Buttons
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform"
st.markdown(
f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:15px; background-color:#FF6347; color:white; font-size:18px; border:none; border-radius:5px; cursor:pointer;">Register Now!</button></a>',
unsafe_allow_html=True
)
# Teaser Image or Background (optional, replace with a suitable image link if available)
#Centrailzed Event LIst
st.markdown(
'''
<div style="display: flex; justify-content: center; margin-top: 10px;">
<a href="?page=event_list" style="text-decoration: none;">
<button style="width:100%; max-width: 150px; padding:10px; background-color:transparent; color:#FF6347; font-size:16px; border:2px solid #FF6347; border-radius:5px; cursor:pointer;">
View Event List
</button>
</a>
</div>
''',
unsafe_allow_html=True
)
if st.query_params.get("page") == "event_list":
st.session_state.page = "Event List"
st.rerun()
# Footer
st.write("---")
st.markdown("<div style='text-align: center; font-size: 16px; color: grey;'>Organized by the Students of MGIT...</div>", unsafe_allow_html=True)
# Event List Page
#Changed The event list button to be more centred
if st.session_state.page == "Event List":
st.title("🎉 List of Events 🎉")
if st.button("Return to Home"):
st.session_state.page = "Home"
st.query_params.page="home"
st.rerun()
# Displaying each event button in a fixed-size layout
col1, col2 = st.columns(2) # Two-column layout for a cleaner look
with col1:
if st.button("Bug Hunt and Reverse Coding", key="Laser Escape", help="View details for Laser Escape",
use_container_width=True):
st.session_state.selected_event = "Bug Hunt and Reverse Coding"
st.session_state.page = "Bug Hunt and Reverse Coding"
st.rerun()
if st.button("Laser Escape", key="Bug Hunt", help="View details for Laser Escape",
use_container_width=True):
st.session_state.selected_event = "Bug Hunt and Reverse Coding"
st.session_state.page = "Laser Escape"
st.rerun()
if st.button("Website Development Contest", key="Website Development", help="View details for Website Development Contest",
use_container_width=True):
st.session_state.selected_event = "Website Development Contest"
st.session_state.page = "Website Development Contest"
st.rerun()
#Pushed this UP
if st.button("Logic Link", key="Logic Link", help="View details for Meme Making Contest",
use_container_width=True):
st.session_state.selected_event = "Meme Making Contest"
st.session_state.page = "Logic Link"
st.rerun()
if st.button("IdeaOrbit", key="IdeaOrbit", help="View details for IdeaOrbit", use_container_width=True):
st.session_state.selected_event = "IdeaOrbit"
st.session_state.page = "ideaOrbit"
st.rerun()
if st.button("IPL Auction", key="IPL Auction", help="View details for IPL Auction", use_container_width=True):
st.session_state.selected_event = "IPL Auction"
st.session_state.page = "IPL Auction"
st.rerun()
#Pushed this up too
if st.button("Minute to Win It", key="Minute to Win It", help="View details for Minute to Win It",
use_container_width=True):
st.session_state.selected_event = "Minute to Win It"
st.session_state.page = "Minute to Win It"
st.rerun()
if st.button("Meme Making Contest", key="Meme Making Contest", help="View details for Meme Making Contest",
use_container_width=True):
st.session_state.selected_event = "Meme Making Contest"
st.session_state.page = "Meme Making Contest"
st.rerun()
if st.button("Snake and Ladders", key="Snake and Ladders", help="View details for Meme Making Contest",
use_container_width=True):
st.session_state.selected_event = "Meme Making Contest"
st.session_state.page = "Snake and Ladders"
st.rerun()
with col2:
if st.button("Smash Karts", key="Smash Karts", help="View details for Smash Karts",
use_container_width=True):
st.session_state.selected_event = "Bug Hunt and Reverse Coding"
st.session_state.page = "Smash Karts"
st.rerun()
if st.button("Dum Charades", key="Dum Charades", help="View details for Dum Charades",
use_container_width=True):
st.session_state.selected_event = "Bug Hunt and Reverse Coding"
st.session_state.page = "Dum Charades"
st.rerun()
if st.button("Treasure Hunt", key="Treasure Hunt", help="View details for Treasure Hunt", use_container_width=True):
st.session_state.selected_event = "Treasure Hunt"
st.session_state.page = "Treasure Hunt"
st.rerun()
if st.button("Aptitude Trivia", key="Aptitude Trivia", help="View details for Aptitude Trivia",
use_container_width=True):
st.session_state.selected_event = "Aptitude Trivia"
st.session_state.page = "Aptitude Trivia"
st.rerun()
if st.button("AI Art Gallery", key="AI Art Gallery", help="View details for AI Art Gallery",
use_container_width=True):
st.session_state.selected_event = "AI Art Gallery"
st.session_state.page = "AI Art Gallery"
st.rerun()
if st.button("Squid Game", key="Squid Game", help="View details for Squid Game", use_container_width=True):
st.session_state.selected_event = "Squid Game"
st.session_state.page = "Squid Game"
st.rerun()
if st.button("Anybody Can Draw", key="Anybody Can Draw", help="View details for Anybody Can Draw",
use_container_width=True):
st.session_state.selected_event = "Anybody Can Draw"
st.session_state.page = "Anybody Can Draw"
st.rerun()
if st.session_state.page == "Bug Hunt and Reverse Coding":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🕵️♂️ Bug Hunt and Reverse Coding")
st.subheader("Put Your Debugging and Coding Skills to the Test!")
# Event Overview
st.markdown("""
Welcome to the **Bug Hunt and Reverse Coding** event! This is the perfect opportunity for all coding enthusiasts to showcase their debugging skills, engage in exciting reverse coding tasks, and tackle challenges head-on.
Get ready for three thrilling levels of coding puzzles, from basics to advanced!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Debugging Basics
- **Objective**: Identify and fix bugs in simple programs.
- **Difficulty**: Beginner
### Level 2: Intermediate Debugging and Reverse Coding
- **Objective**: Solve complex coding problems and start reverse coding.
- **Difficulty**: Intermediate
### Level 3: Advanced Challenges
- **Objective**: Face time-bound debugging of complex code and solve advanced reverse coding puzzles.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹50 for 1 person
- ₹70 for 2 persons
- **How to Register**: Sign up as a solo participant or team up with a friend to unlock more savings!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate coding challenge!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform"
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Treasure Hunt":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🗺️ Treasure Hunt")
st.subheader("Join the Adventure and Unlock the Hidden Treasures!")
# Event Overview
st.markdown("""
Welcome to the **Treasure Hunt**! Embark on an exciting journey filled with clues, puzzles, and challenges that will test your wit, teamwork, and problem-solving skills.
Prepare for three thrilling levels as you navigate your way to the final treasure!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Clue Discovery
- **Objective**: Solve basic riddles to unlock the next clue.
- **Difficulty**: Beginner
### Level 2: Puzzle Challenges
- **Objective**: Complete intermediate puzzles and tasks to reveal the next location.
- **Difficulty**: Intermediate
### Level 3: Final Treasure Chase
- **Objective**: The final clue leads to the treasure, testing teamwork and strategy to the fullest.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹120 for 3 persons
- ₹150 for 4 persons
- ₹180 for 5 persons
- **How to Register**: Gather your team and register together to unlock your spot in the hunt!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate Treasure Hunt adventure!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your link
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Website Development Contest":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🌐 Website Development Contest")
st.subheader("Showcase Your Creativity and Technical Skills!")
# Event Overview
st.markdown("""
Welcome to the **Website Development Contest**! This event is a fantastic opportunity for aspiring web developers to showcase their creativity, technical skills, and design prowess.
Compete through three exciting levels, from concept to final presentation, and impress the judges with your website!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Concept Submission
- **Objective**: Present your website idea along with rough designs and wireframes.
- **Difficulty**: Beginner
### Level 2: Development Phase
- **Objective**: Create a functional prototype based on your submitted concept.
- **Difficulty**: Intermediate
### Level 3: Final Presentation
- **Objective**: Demonstrate and defend your website before a panel of judges, highlighting its features and design.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹50 for 1 person
- ₹70 for 2 persons
- **How to Register**: Sign up solo or partner up to take on this development challenge!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate Website Development Contest!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your link
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Aptitude Trivia":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🧠 Aptitude Trivia")
st.subheader("Put Your Mental Agility to the Ultimate Test!")
# Event Overview
st.markdown("""
Welcome to the **Aptitude Trivia**! This event is perfect for those who love challenging their minds with logical reasoning, speed, and quick thinking.
Compete through three intense levels, from a preliminary quiz to a thrilling final face-off!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Preliminary Quiz
- **Objective**: A written test covering general aptitude and logical reasoning.
- **Difficulty**: Beginner
### Level 2: Speed Round
- **Objective**: Timed quiz with quick-response questions to test mental agility.
- **Difficulty**: Intermediate
### Level 3: Final Face-Off
- **Objective**: Top contenders face off in a buzzer round to crown the champion.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹40 for 1 person
- ₹65 for 2 persons
- **How to Register**: Sign up individually or bring a friend to take on the challenge together!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate Aptitude Trivia challenge!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your link
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "ideaOrbit":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🌟 ideaOrbit")
st.subheader("Pitch Your Ideas and Bring Them to Life!")
# Event Overview
st.markdown("""
Welcome to **ideaOrbit**! This is the ultimate platform for innovators and visionaries to present their groundbreaking ideas. Compete through three levels, refining your concept and presentation, and pitch live to a panel of judges and an audience!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Idea Submission
- **Objective**: Submit a brief description of your innovative concept.
- **Difficulty**: Beginner
### Level 2: Semi-Final Pitch
- **Objective**: Present a detailed proposal with visuals or prototypes to showcase your idea.
- **Difficulty**: Intermediate
### Level 3: Grand Finale
- **Objective**: Deliver a live pitch in front of judges and an audience, followed by a Q&A session to defend your idea.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹50 for 1 person
- ₹70 for 2 persons
- ₹100 for 4 persons
- **How to Register**: Register solo, with a partner, or as a team to bring your ideas to the stage!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate ideaOrbit competition!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your link
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "AI Art Gallery":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🎨 AI Art Gallery")
st.subheader("Create, Exhibit, and Compete with AI-Generated Art!")
# Event Overview
st.markdown("""
Welcome to the **AI Art Gallery**! This unique event invites participants to generate artwork using AI based on a given theme. Join us in celebrating creativity through technology, with your artwork showcased and judged in an exhibition.
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Artwork Creation
- **Objective**: Submit an AI-generated artwork based on the event's theme.
- **Difficulty**: Beginner
### Level 2: Exhibition
- **Objective**: Selected works will be displayed in an exhibition for public viewing and appreciation.
- **Difficulty**: Intermediate
### Level 3: Judging Panel
- **Objective**: Final assessment by a panel of art and AI experts, with additional audience votes to select the winning pieces.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**: ₹40 for 1 person
- **How to Register**: Sign up as a solo participant to showcase your AI-generated creativity!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate AI Art Gallery showcase!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your link
st.markdown(f'<a href="{registration_link}" target="_blank"><button style="width:100%; padding:10px; background-color:#4CAF50; color:white; font-size:16px;">Register Now!</button></a>', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
.css-145kmo2 {
color: #3A3A3A;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "IPL Auction":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🏏 IPL Auction")
st.subheader("Strategize, Bid, and Build Your Ultimate Team!")
# Event Overview
st.markdown("""
Welcome to the **IPL Auction**! This thrilling event allows participants to engage in a simulated auction experience, where you can form your dream cricket team through strategic bidding. Compete through three exciting levels, from team formation to the final auction, and showcase your management skills!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Team Formation
- **Objective**: Register your team and receive a briefing on the auction rules and guidelines.
- **Difficulty**: Beginner
### Level 2: Mock Auction
- **Objective**: Participate in a practice auction to familiarize yourself with bidding strategies and team building.
- **Difficulty**: Intermediate
### Level 3: Final Auction
- **Objective**: Engage in the live auction, bid for players, and strategize to build the strongest virtual team for the tournament.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹40 for 1 person
- ₹70 for 2 persons
- ₹110 for 3 persons
- ₹140 for 4 persons
- ₹180 for 5 persons
- ₹210 for 6 persons
- **How to Register**: Sign up individually or form a team of up to six members to participate in the auction together!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and secure your spot in the ultimate IPL Auction challenge!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your actual registration link
st.markdown(f'''
<a href="{registration_link}" target="_blank">
<button style="
width:100%;
padding:10px;
background-color:#4CAF50;
color:white;
font-size:16px;
border:none;
border-radius:5px;
cursor:pointer;">
Register Now!
</button>
</a>
''', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
/* Center the text and apply primary color */
.css-1d391kg {
text-align: center;
color: #4CAF50;
}
/* Adjust the color for secondary text */
.css-145kmo2 {
color: #3A3A3A;
}
/* Enhance button hover effect */
a > button:hover {
background-color: #45a049;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Squid Game":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🦑 Squid Game")
st.subheader("Compete in Thrilling Challenges Inspired by the Series!")
# Event Overview
st.markdown("""
Welcome to the **Squid Game** event! Inspired by the popular series, this competition will challenge your skills, strategy, and endurance through three intense levels. Only the strongest and most strategic participants will make it to the final round!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Initial Game
- **Objective**: Participate in basic challenges inspired by the series, such as **Red Light, Green Light**.
- **Difficulty**: Beginner
### Level 2: Intermediate Challenge
- **Objective**: Tackle more complex games, which may include puzzles or team-based tasks to test your collaboration and problem-solving skills.
- **Difficulty**: Intermediate
### Level 3: Final Round
- **Objective**: Compete in the ultimate game that decides the last survivor. Only the strongest will prevail!
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹50 for 1 person
- ₹70 for 2 persons
- ₹110 for 3 persons
- **How to Register**: Register solo or team up with friends to test your skills and see who will emerge as the ultimate survivor!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and take your chance in the ultimate Squid Game challenge!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with the actual registration link
st.markdown(f'''
<a href="{registration_link}" target="_blank">
<button style="
width:100%;
padding:10px;
background-color:#FF6347;
color:white;
font-size:16px;
border:none;
border-radius:5px;
cursor:pointer;">
Register Now!
</button>
</a>
''', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
/* Center the text and apply primary color */
.css-1d391kg {
text-align: center;
color: #FF6347;
}
/* Adjust the color for secondary text */
.css-145kmo2 {
color: #3A3A3A;
}
/* Enhance button hover effect */
a > button:hover {
background-color: #FF4500;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Laser Escape":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🔦 Laser Escape")
st.subheader("Dodge, Duck, and Outsmart the Laser Maze!")
# Event Overview
st.markdown("""
Welcome to **Laser Escape**! Get ready to navigate through increasingly challenging laser mazes, testing your agility, critical thinking, and timing. Will you make it through to the final escape?
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Basic Maze
- **Objective**: Navigate through an entry-level laser maze with minimal obstacles.
- **Difficulty**: Beginner
### Level 2: Intermediate Maze
- **Objective**: Face a denser laser field and trickier paths, demanding more agility and focus.
- **Difficulty**: Intermediate
### Level 3: Advanced Escape
- **Objective**: Conquer a time-constrained, high-density laser maze, where critical thinking and fast reflexes are key to survival.
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**: ₹40 for 1 person
- **How to Register**: Sign up solo to see if you have what it takes to make it through the ultimate laser escape!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and prepare for the ultimate Laser Escape challenge!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your actual registration link
st.markdown(f'''
<a href="{registration_link}" target="_blank">
<button style="
width:100%;
padding:10px;
background-color:#FF4500;
color:white;
font-size:16px;
border:none;
border-radius:5px;
cursor:pointer;">
Register Now!
</button>
</a>
''', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
/* Center the text and apply primary color */
.css-1d391kg {
text-align: center;
color: #FF4500;
}
/* Adjust the color for secondary text */
.css-145kmo2 {
color: #3A3A3A;
}
/* Enhance button hover effect */
a > button:hover {
background-color: #FF6347;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Meme Making Contest":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("😂 Meme Making Contest")
st.subheader("Unleash Your Creativity and Humor in the Ultimate Meme Battle!")
# Event Overview
st.markdown("""
Welcome to the **Meme Making Contest**! If you’ve got a knack for humor and a love for memes, this event is your chance to shine. Compete through three rounds, from submission to audience voting, and finally, a judge’s selection for the most creative and hilarious memes!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Submission Round
- **Objective**: Create and submit original memes based on given themes. Show us your best work!
- **Difficulty**: Beginner
### Level 2: Community Voting
- **Objective**: Your memes will be displayed for public voting. Gain support from the crowd and rise to the top!
- **Difficulty**: Intermediate
### Level 3: Judge's Choice
- **Objective**: The top memes are evaluated by a panel of judges based on creativity, humor, and originality. May the best meme win!
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹40 for 1 person
- ₹60 for 2 persons
- **How to Register**: Register solo or as a duo and showcase your meme-making skills to the world!
""")
# Call to Action
st.markdown("#### 🏆 **Register now to join the Meme Making Contest and let the laughs begin!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your actual registration link
st.markdown(f'''
<a href="{registration_link}" target="_blank">
<button style="
width:100%;
padding:10px;
background-color:#FFD700;
color:black;
font-size:16px;
border:none;
border-radius:5px;
cursor:pointer;">
Register Now!
</button>
</a>
''', unsafe_allow_html=True)
# Footer
st.markdown("---")
st.markdown("For more information or queries, please contact [Event Organizer](mailto:[email protected]).")
# Customize layout and style
st.markdown("""
<style>
/* Center the text and apply primary color */
.css-1d391kg {
text-align: center;
color: #FFD700;
}
/* Adjust the color for secondary text */
.css-145kmo2 {
color: #3A3A3A;
}
/* Enhance button hover effect */
a > button:hover {
background-color: #FFC107;
}
</style>
""", unsafe_allow_html=True)
if st.button("View Event List"):
st.session_state.page = "Event List"
st.rerun()
if st.session_state.page == "Smash Karts":
if st.button("Return to Home"):
st.session_state.page = "Home"
st.rerun()
# Event Header
st.title("🏎️ Smash Karts")
st.subheader("Rev Up Your Engines and Race to Victory!")
# Event Overview
st.markdown("""
Welcome to **Smash Karts**! Get ready to race against the clock and your competitors in a thrilling karting event. From qualification heats to the grand finale, only the fastest and most skilled racers will prevail!
""")
# Event Details
st.header("Event Levels")
st.markdown("""
### Level 1: Qualification Heats
- **Objective**: Participants compete in initial kart races to secure their spot in the semi-finals.
- **Difficulty**: Beginner
### Level 2: Semi-Finals
- **Objective**: The top racers from the heats face off with added challenges and obstacles.
- **Difficulty**: Intermediate
### Level 3: Grand Finale
- **Objective**: The final race determines the champion. Only the best will cross the finish line first!
- **Difficulty**: Advanced
""")
# Registration Information
st.header("Registration Details")
st.markdown("""
- **Fee**:
- ₹30 for 1 person
- ₹50 for 2 persons
- **How to Register**: Race solo or team up with a friend and put your driving skills to the test!
""")
# Call to Action
st.markdown("#### 🏆 **Register now and get ready to smash your way to victory!** 🏆")
registration_link = "https://docs.google.com/forms/d/e/1FAIpQLSeeRZlHuPQ0E3Y2eyb3TYgjk6Kig3ct-i2xZlht8Drh5zqw7Q/viewform" # Replace with your actual registration link
st.markdown(f'''
<a href="{registration_link}" target="_blank">
<button style="
width:100%;
padding:10px;
background-color:#1E90FF;
color:white;
font-size:16px;
border:none;
border-radius:5px;
cursor:pointer;">
Register Now!