forked from Superpositionfc/website4.1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapters.html
More file actions
5083 lines (4916 loc) · 196 KB
/
Copy pathchapters.html
File metadata and controls
5083 lines (4916 loc) · 196 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Superposition</title>
<link
href="vendor/fontawesome-free/css/all.min.css"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic' rel='stylesheet"
type="text/css"
/>
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet" />
<link rel="stylesheet" href="css/old.css" />
<link href="css/creative.min.css" rel="stylesheet" />
<link
rel="icon"
href="https://cdn.glitch.com/f23b8598-8c75-4b1a-83f7-6d57abc0ee65%2FYO.png?v=1569987120655"
/>
<link
href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script
src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<script src="script.js"></script>
</head>
<body onload="myFunction1000()" id="page-top">
<div id="loader">
<center>
<img
src="https://cdn.glitch.com/696a54c7-e493-465b-b503-c49262ef99ac%2FYO.png?v=1578731939570"
class="rotate"
width="150"
height="150"
/>
</center>
</div>
<div class="animate-bottom" id="everything" style="display:none; ">
<a name="top"></a>
<nav
class="navbar navbar-expand-lg navbar-light fixed-top py-3"
id="mainNav"
>
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="/"><img src="https://cdn.glitch.global/531a4046-e239-4378-b2aa-51d9953afd98/SPLOGO.png?v=1649567750718" height="45" class="d-inline-block align-top" style=""></a>
<button
class="navbar-toggler navbar-toggler-right"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto my-2 my-lg-0">
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
data-toggle="dropdown"
>
ABOUT
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="story.html">OUR STORY</a>
<a class="dropdown-item" href="team.html">TEAM</a>
<a class="dropdown-item" href="photos.html">PHOTOS</a>
</div>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
data-toggle="dropdown"
>
PROGRAMS
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="chapters.html">CHAPTERS</a>
<a class="dropdown-item" href="hackathon6.html">HACKATHON</a>
<!-- <a class="dropdown-item" href="hackathon.html">HACKATHON</a> -->
<a class="dropdown-item" href="conference.html">CONFERENCE</a>
<a class="dropdown-item" href="workshops.html">WORKSHOPS</a>
</div>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
data-toggle="dropdown"
>
SUPPORT US
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="sponsors.html">SPONSORS</a>
<a class="dropdown-item" href="partners.html">PARTNERS</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- MASTHEAD -->
<header class="masthead11" id="headerwork">
<div class="container h-100">
<div
class="row h-100 align-items-center justify-content-center text-center"
>
<div class="col-lg-10 align-self-end">
<h1 class="text-white">
chapters
</h1>
</div>
<div class="col-lg-8 align-self-baseline">
<h3
class="text-white-75 font-weight-light mb-5"
id="locationsub2"
>
EXPANDING SUPERPOSITION WORLDWIDE
</h3>
<a href="http://bit.ly/sp_chapterinfo" target="_blank">
<button class="button">PROGRAM INFO</button>
</a>
<a href="http://bit.ly/sp_chapter" target="_blank">
<button class="button">APPLICATION</button>
</a>
<a href="#chapternames" target="_self">
<button class="button">ACTIVE CHAPTERS</button>
</a>
</div>
</div>
</div>
</header>
<!-- COUNTER -->
<center>
<center>
<section>
<div id="pinkbg">
<div class="row4">
<center>
<div class="column4">
<h2 id="value" class="expectitles2">120</h2>
<p class="expectsubtitles2">Chapters</p>
</div>
<div class="column4">
<h2 id="value2" class="expectitles2">20</h2>
<p class="expectsubtitles2">US States & Territories</p>
</div>
<div class="column4">
<h2 id="value3" class="expectitles2">25</h2>
<p class="expectsubtitles2">Countries</p>
</div>
</center>
</div>
</div>
</section>
</center>
<!-- ABOUT CHAPTERS -->
<section id="aboutpading">
<div class="w3-row">
<div class="column col-lg-6 col-md-6 col-sm-12">
<p align="left" class="sectiontext">
At our hackathons, over 90% of attendees are from the Bay
Area. In order to create
opportunities for girls from around the world to pursue STEM, we
need to go beyond. We can't bring everyone to San Francisco,
but we can share the empowering Superposition experience
worldwide. With your leadership, we can bring
Superposition to your local community.
</p>
</div>
<div class="column col-lg-6 col-md-6 col-sm-12">
<p align="left" class="sectiontext">
Chapters are equipped with exclusive resources for impacting their
communities without starting from scratch. We have detailed guides
for hosting events, 40+ STEM lesson plans, and more. Learn
how you can start your own chapter
<b class="emphasis"><a href="http://bit.ly/sp_chapterinfo">here</a></b>! The application
process is simpler than ever — just a few questions and no
interviews.
</p>
</div>
</div>
</section>
</center>
<!-- MAP -->
<section id="chapters-map">
<div style="height: 80vh" id="leaflet-map"></div>
<div class="overlay" onclick="fadeOutOverlay()">
<p class="text-white animate mb-0" style="font-family: Nanum Gothic">
(Tap to Interact)
</p>
<h1
class="text-white sectionheader mt-0"
style="font-family: Now Bold"
>
AROUND THE WORLD
</h1>
<h3
class="text-white font-weight-light"
style="font-family: 'Nanum Gothic', sans-serif;"
>
<strong>120</strong> Chapters & Counting
</h3>
</div>
</section>
<!-- WHY START A CHAPTER -->
<section>
<div class="faqcolors">
<center>
<p class="sectionheader" id="faqs">WHY START A CHAPTER?</p>
</center>
<center>
<div class="faqs">
<div class="row">
<div class="column">
<button class="accordion">EXTENSIVE RESOURCES</button>
<div class="panel">
<p align="left" class="faqstext">
With our experience managing large-scale events and social
media,
<strong
>we'll provide you with all the resources you
need.</strong
>
Skip the trial and error process, and
<em>get right to creating change.</em> You'll be added to
a Slack workspace where you'll constantly be getting new
materials, like lesson plans, guides, and advice. You'll
have access to our Lead Director and Chapters team for
asking any and all questions.
</p>
</div>
<button class="accordion">RECOGNITION</button>
<div class="panel">
<p align="left" class="faqstext">
Every month, we will award a
<strong>Chapter of the Month</strong> and
<strong>Changemaker of the Month</strong> recognizing
chapters and individuals going above and beyond to uphold
our mission. Superposition Chapter Leadership is also
eligible to earn the Presidential Volunteer Service Award.
</p>
</div>
<button class="accordion">STEM CURRICULUM</button>
<div class="panel">
<p align="left" class="faqstext">
Thanks to our Superposition Education Team, chapters get
access to complete STEM lesson plans, including teaching
guides, student worksheets, and slideshows. We create
content in Biology, Astronomy, Physics, Computer Science,
Chemistry, and Math at elementary, middle, and high school
levels.
</p>
</div>
</div>
<!--
<button class="accordion">FLEXIBILITY</button>
<div class="panel">
<p align="left" class="faqstext">
Your work will remain independent of other chapters and of the core team. You'll have the
freedom to work on <strong>any</strong> project of your choosing, and recieve all the
support you need.
</p>
</div>
<button class="accordion">HOW DO I FORM A TEAM?</button>
<div class="panel">
<p align="left" class="faqstext">
We encourage people to work in teams of up to four.
Additionally, there will be icebreakers in the beginning to
help you find a team! You are not required to sumbit a hack,
but there will be workshops and mentors on-hand to help you.
</p>
</div>
<button class="accordion">
DO YOU OFFER TRAVEL REIMBURSEMENTS?
</button>
<div class="panel">
<p align="left" class="faqstext">
Yes! We have separate travel reimbursement programs for high school and college students. Find more info
<a href="bit.ly/sp4_grant"> here. </a>
</p>
</div>
</div>
-->
<div class="column">
<button class="accordion">
IMPACT
</button>
<div class="panel">
<p align="left" class="faqstext">
Empower girls in STEM by creating educational
opportunities & community! With your chapter's programs,
you'll be able to inspire a love of STEM in others. Our
chapters' events have already reached thousands of
students in 23 countries!
</p>
</div>
<button class="accordion">FLEXIBILITY</button>
<div class="panel">
<p align="left" class="faqstext">
Your work will remain independent of other chapters and of
the core team. You'll have the freedom to work on
<strong>any</strong> project of your choosing, and recieve
all the support you need.
</p>
</div>
<button class="accordion">CONNECTIONS</button>
<div class="panel">
<p align="left" class="faqstext">
With Superposition's international reputation, your
chapter will gain access to connections to companies &
girls in STEM from around the world. Our chapters have
been able to host events with Art of Problem Solving,
Sketch, and iRobot.
</p>
</div>
<!--
<button class="accordion">
CAN I CONTINUE A PREVIOUS PROJECT?
</button>
<div class="panel">
<p align="left" class="faqstext">
To ensure fairness, we want all participants to start a
project from scratch once they form a team at our event.
Feel free to brainstorm ideas beforehand!
</p>
</div>
<button class="accordion">
HOW DO I SIGN UP?
</button>
<div class="panel">
<p align="left" class="faqstext">
Sign up
<a href="https://bit.ly/sp4_app">here</a> by February 16th!
</p>
</div>
<button class="accordion">
DO I HAVE TO STAY THE ENTIRE TIME?
</button>
<div class="panel">
<p align="left" class="faqstext">
We highly encourage attendees to stay overnight, but if you must leave early
or for any portion of the hackathon, please notify us in advance at <a href="mailto:info@superposition.tech">
info@superposition.tech</a>. If you are under 18, you must be signed out by a parent with an ID.
</p>
</div>
-->
</div>
</div>
</div>
</center>
</div>
<br />
<br />
<br />
</section>
<!-- CHAPTERS -->
<section id="chapters">
<div class="faqcolors">
<center>
<p class="sectionheader" id="chapternames">ACTIVE CHAPTERS</p>
</center>
<center>
<div class="faqs">
<div class="chapterscontainer">
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/YXdYrFL/Huntsville-Alabama.png); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Huntsville
</h3>
<div class="statetag">
<strong>Alabama</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Zakari Mitchell
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionhsv/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.huntsville@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/9GgrbR4/Phoenix.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Phoenix
</h3>
<div class="statetag">
<strong>Arizona</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Aashika Dupati, Saahithi Punnam
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionphoenix/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="ch.phoenix@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/fCDyw1T/Fremont.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Fremont
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Ashita Singh, Jade Wang
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionfremont/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="https://linktr.ee/superpositionfremont" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch_fremont@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/RCsGgWm/San-Jose.png); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
San Jose
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Leads: Kaylyn Phan, Meha Goyal
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionsj/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.sanjose@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/RS3XZ7p/San-Ramon.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
San Ramon
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Leads: Shivapragna Guntupalli, Nisha Srinivasan
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionsanramon/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.sanramon@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/nMtSJLF/Aerial-view-of-residential-real-estate-homes-in-Foster-City-CA.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
San Mateo
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Amanda Li
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionsanmateo/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.sanmateo@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/qrt9k4M/Castro-Valley.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Castro Valley
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Kylie Szeto, Kaylee Yang
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositioncv/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.castrovalley@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/T8Rympj/Monte-Vista-HS.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Monte Vista HS
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Joyce Tong
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionmv/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.montevistahs@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/GPfw5n9/San-Francisco.png); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
San Francisco
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Gabriella Quach
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionsf/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.sanfrancisco@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/CsGhnCh/Sonoma.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Sonoma
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Leslie Yanez
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionfc/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.sonoma@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/ZMFMHLJ/Dublin.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Dublin
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Shriya Rudrashetty
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositiondublin/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.dublin@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/8Nx29t7/Santa-Monica.png); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Santa Monica
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Jazmin Can
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionsm/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.santamonica@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/Cm2cLJX/Cupertino-HS.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Cupertino HS
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Leads: Asritha Kota, Muskaan Aggarwal
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionchs/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.cupertinohs@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/0B8WtH4/Mission-SJ-HS.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Mission San Jose HS
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Leads: Ragalina Palaka, Mingxin Wang
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionmsjhs/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.missionsanjosehs@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/6rYLzz7/Evergreen-Valley-HS.png); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Evergreen Valley HS
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Ridhima Morampudi and Aanvi Singhani
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositionevhs/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.evergreenvalleyhs@superposition.tech"
>Email</a
>
</p>
</div>
</div>
<div class="surrounding-block">
<div
class="chapter-block"
style="background-image: url(https://i.ibb.co/rf4wHZ2/Daly-City.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;"
></div>
<h3>
Daly City
</h3>
<div class="statetag">
<strong>California</strong>
</div>
<div class="chapleadsandinfo">
<br />
<h4>
Chapter Lead: Iris Li
</h4>
<p>
<a
class="chapter-social-link"
href="https://www.instagram.com/superpositiondalycity/"
target="_blank"
>Instagram</a
>
|
<a class="chapter-social-link" href="" target="_blank"
>Linktree</a
>
|
<a
class="chapter-social-link"
href="mailto:ch.dalycity@superposition.tech"
>Email</a