Skip to content

Commit f832bca

Browse files
committed
Add organizer images and update layout for improved presentation
1 parent b417bf7 commit f832bca

File tree

5 files changed

+43
-16
lines changed

5 files changed

+43
-16
lines changed

Krisztian_Flautner.jpeg

49.8 KB
Loading

index.html

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ <h1>Jaseci: An Open-Source AI-Native Language and Runtime Stack</h1>
9797
and scaling constructs. Prompt less, smile more. No boilerplate, no DevOps, no manual prompts.
9898
</p>
9999
</div>
100+
101+
<a href="https://www.jaseci.org/" class="jaseci-cta" target="_blank" rel="noopener">
102+
Explore Jaseci.org
103+
<svg viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z" clip-rule="evenodd"/></svg>
104+
</a>
100105
</section>
101106

102107
<!-- Tutorial Themes -->
@@ -195,11 +200,26 @@ <h3>Schedule Coming Soon</h3>
195200
<section id="organizers">
196201
<h2>Organizers</h2>
197202
<div class="organizers-grid">
203+
<a href="https://www.jasonmars.org/" class="organizer-card" target="_blank" rel="noopener">
204+
<div class="photo-placeholder">
205+
<img src="jason-mars.jpg" alt="Jason Mars">
206+
</div>
207+
<h3>Jason Mars</h3>
208+
<p class="affiliation">University of Michigan</p>
209+
</a>
210+
<a href="https://lingjia.engin.umich.edu/" class="organizer-card" target="_blank" rel="noopener">
211+
<div class="photo-placeholder">
212+
<img src="lingjia.jpg" alt="Lingjia Tang">
213+
</div>
214+
<h3>Lingjia Tang</h3>
215+
<p class="affiliation">University of Michigan</p>
216+
</a>
198217
<div class="organizer-card">
199-
<div class="photo-placeholder"></div>
200-
<h3>Organizer Name</h3>
201-
<p class="affiliation">Institution</p>
202-
<p class="bio">Organizer profiles will be added here soon. Check back for updates!</p>
218+
<div class="photo-placeholder">
219+
<img src="Krisztian_Flautner.jpeg" alt="Krisztian Flautner">
220+
</div>
221+
<h3>Krisztian Flautner</h3>
222+
<p class="affiliation">University of Michigan</p>
203223
</div>
204224
</div>
205225
</section>
@@ -208,7 +228,7 @@ <h3>Organizer Name</h3>
208228
<section id="attend" class="cta-section">
209229
<div class="cta-block">
210230
<p>Interested in attending? Let us know so we can plan accordingly and keep you updated.</p>
211-
<a href="https://sites.google.com/view/cryptorch-asplos-2026-tutorial" class="cta-btn" target="_blank" rel="noopener">
231+
<a href="https://forms.gle/2RcBW13LhHadaGny7" class="cta-btn" target="_blank" rel="noopener">
212232
Let us know if you are interested!
213233
<svg viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M3 10a.75.75 0 01.75-.75h10.638L10.23 5.29a.75.75 0 111.04-1.08l5.5 5.25a.75.75 0 010 1.08l-5.5 5.25a.75.75 0 11-1.04-1.08l4.158-3.96H3.75A.75.75 0 013 10z" clip-rule="evenodd"/></svg>
214234
</a>

jason-mars.jpg

202 KB
Loading

lingjia.jpg

463 KB
Loading

styles.css

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -848,22 +848,24 @@ h2 {
848848

849849
/* Organizers Grid */
850850
.organizers-grid {
851-
display: grid;
852-
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
853-
gap: 32px;
851+
display: flex;
852+
flex-wrap: wrap;
853+
justify-content: center;
854+
gap: 24px;
854855
margin-top: 40px;
855856
}
856857

857858
.organizer-card {
858859
background-color: var(--bg-card);
859860
border: 1px solid var(--border-color);
860861
border-radius: var(--radius-lg);
861-
padding: 24px;
862+
padding: 20px;
862863
text-align: center;
863864
transition: transform 0.2s, box-shadow 0.2s;
864865
text-decoration: none;
865866
color: inherit;
866867
display: block;
868+
max-width: 200px;
867869
}
868870

869871
.organizer-card:hover {
@@ -872,11 +874,11 @@ h2 {
872874
}
873875

874876
.photo-placeholder {
875-
width: 120px;
876-
height: 120px;
877+
width: 90px;
878+
height: 90px;
877879
border-radius: 50%;
878880
background: linear-gradient(135deg, var(--bg-sidebar), var(--border-color));
879-
margin: 0 auto 16px;
881+
margin: 0 auto 12px;
880882
display: flex;
881883
align-items: center;
882884
justify-content: center;
@@ -891,15 +893,20 @@ h2 {
891893
box-shadow: var(--shadow-lg), 0 0 0 2px var(--primary-color);
892894
}
893895

894-
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }
896+
.photo-placeholder img {
897+
width: 100%;
898+
height: 100%;
899+
object-fit: cover;
900+
object-position: 55% 30%;
901+
}
895902

896-
.organizer-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
903+
.organizer-card h3 { font-size: 1rem; margin-bottom: 4px; }
897904

898905
.organizer-card .affiliation {
899906
color: var(--primary-color);
900-
font-size: 0.85rem;
907+
font-size: 0.8rem;
901908
font-weight: 600;
902-
margin-bottom: 10px;
909+
margin-bottom: 8px;
903910
}
904911

905912
.organizer-card .bio {

0 commit comments

Comments
 (0)