Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 6 additions & 8 deletions .vitepress/theme/components/TeamMembers.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script>
import { computed } from 'vue'
import TeamMembersItem from './TeamMembersItem.vue'

export default {
components: {
TeamMembersItem
Expand All @@ -19,17 +18,16 @@ export default {
}
}
</script>

<template>
<div :class="classes">
<div class="mx-auto max-w-sm grid grid-cols-1 md:grid-cols-[repeat(auto-fit,minmax(14rem,1fr))] gap-6" :class="{
'md:max-w-7xl': members.length >= 3,
'md:max-w-sm': members.length === 1,
'md:max-w-3xl': members.length === 2
}">
<div class="max-w-sm grid grid-cols-1 md:grid-cols-[repeat(auto-fit,minmax(14rem,1fr))] gap-6" :class="{
'md:max-w-7xl': members.length >= 3,
'md:max-w-[14rem]': members.length === 1,
'md:max-w-3xl': members.length === 2
}">
<div v-for="member in members" :key="member.name" class="item">
<TeamMembersItem :member="member" />
</div>
</div>
</div>
</template>
</template>
16 changes: 16 additions & 0 deletions people/will-perlichek.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: person
name: "Will Perlichek"
image: "/assets/people/will-perlichek.jpg"
title: "Master's Student"
category: "Master's Students"
links:
- link: "https://github.com/wperlichek"
icon: "github"
- link: "https://www.linkedin.com/in/williamperlichek/"
icon: "linkedin"
- link: "wperlich@fredhutch.org"
icon: "email"
---

Will is a Computer Science and Engineering M.S. student in the Professional Master’s Program at the University of Washington’s Paul G. Allen School. He is focused on applying his software engineering background to scale and optimize the lab’s computational pipelines for analyzing viral evolution, while also exploring applications of machine learning.
Binary file added public/assets/people/will-perlichek.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.