Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 18 additions & 19 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ const automationImporter = new GraphicsImporter(
</div>
</div>

<!-- Teaching. -->
<div class="hero">
<div class="hero-content flex-col lg:flex-row-reverse w-full">
<div class="basis-1/2 self-stretch">
Expand Down Expand Up @@ -313,6 +314,7 @@ const automationImporter = new GraphicsImporter(

<div class="h-1/4dvh"/>

<!-- Undergrads. -->
<div class="hero">
<div class="hero-content flex-col lg:flex-row-reverse w-full">
<div class="basis-1/2 self-stretch">
Expand Down Expand Up @@ -365,6 +367,7 @@ const automationImporter = new GraphicsImporter(

<div class="h-1/4dvh"/>

<!-- Open Source. -->
<div class="hero">
<div class="hero-content flex-col lg:flex-row-reverse w-full">
<div class="basis-1/2 self-stretch">
Expand All @@ -385,15 +388,13 @@ const automationImporter = new GraphicsImporter(
</div>

<div class="basis-1/2 self-stretch">
<div class="sticky top-1/3">
<Article>
<h2>Built by everyone</h2>
<h3>Pinpoint is open-source software meaning anyone can review our code, report problems, and
submit changes.</h3>
<p>The open nature of our code also ensures it will still be maintainable even after we stop
developing it.</p>
</Article>
</div>
<Article>
<h2>Built by everyone</h2>
<h3>Pinpoint is open-source software meaning anyone can review our code, report problems, and
submit changes.</h3>
<p>The open nature of our code also ensures it will still be maintainable even after we stop
developing it.</p>
</Article>
</div>
</div>
</div>
Expand All @@ -420,12 +421,10 @@ const automationImporter = new GraphicsImporter(
</div>

<div class="basis-1/2 self-stretch">
<div class="sticky top-1/3">
<Article>
<h2>Learn more about our projects</h2>
<h3>See what else we've made and get in contact with us!</h3>
</Article>
</div>
<Article>
<h2>Learn more about our projects</h2>
<h3>See what else we've made and get in contact with us!</h3>
</Article>
</div>
</div>
</div>
Expand All @@ -445,22 +444,22 @@ const automationImporter = new GraphicsImporter(
<div class="flex space-x-8">
<a href="mailto:[email protected]">
<div class="avatar">
<div class="w-64 rounded-full">
<div class="w-48 rounded-full">
<img src={Kenneth.src} alt="Kenneth J. Yang"/>
</div>
</div>
<Article>
<p>Kenneth J. Yang - University of Washington</p>
<p><strong>Kenneth J. Yang</strong><br/>University of Washington</p>
</Article>
</a>
<a href="mailto:[email protected]">
<div class="avatar">
<div class="w-64 rounded-full">
<div class="w-48 rounded-full">
<img src={Dan.src} alt="Dr. Daniel Birman"/>
</div>
</div>
<Article>
<p>Dr. Daniel Birman - Allen Institute</p>
<p><strong>Daniel Birman, PhD</strong><br/>Allen Institute</p>
</Article>
</a>
</div>
Expand Down