Skip to content

Commit 29fff93

Browse files
committed
removed team and steering commitee from index.vue
1 parent 891a1a6 commit 29fff93

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

pages/index.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,14 @@
4444
</div>
4545
</div>
4646
</div>
47-
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 space-y-32 mb-16">
47+
<!-- <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 space-y-32 mb-16">
4848
<section>
4949
<h2 class="text-3xl font-medium text-gray-600 sm:text-4xl">
5050
<NuxtLink to="/team" class="inline-block hover:opacity-80">
5151
Team
5252
</NuxtLink>
5353
</h2>
5454
<div class="grid grid-cols-2 sm:grid-cols-4 lg:grid-cols-5 gap-16 mt-8">
55-
<!-- <div class="flex items-center flex-wrap justify-center mt-16 gap-x-64 gap-y-16"> -->
5655
<div v-for="(member, index) in team" :key="index">
5756
<NuxtLink :to="`/team#${member.name.replace(' ', '-').toLowerCase()}`"
5857
class="inline-block hover:opacity-80">
@@ -76,7 +75,6 @@
7675
</NuxtLink>
7776
</h2>
7877
<div class="grid grid-cols-2 sm:grid-cols-4 lg:grid-cols-5 gap-16 mt-8">
79-
<!-- <div class="flex items-center flex-wrap justify-center mt-16"> -->
8078
<div v-for="(member, index) in steeringCommittee" :key="index">
8179
<NuxtLink :to="`/team#${member.name.replace(' ', '-').toLowerCase()}`"
8280
class="inline-block hover:opacity-80">
@@ -93,7 +91,7 @@
9391
</div>
9492
</div>
9593
</section>
96-
</main>
94+
</main> -->
9795
<footer class="bg-black border-t-[12px] border-t-[#A32035] text-center text-white py-8 px-4 sm:px-6 lg:px-8 ">
9896
<div class="max-w-7xl mx-auto flex justify-between flex-col gap-8 lg:flex-row flex-wrap">
9997
<div class="text-left">
@@ -171,7 +169,7 @@
171169
</template>
172170

173171
<script setup>
174-
import { team, steeringCommittee } from '../assets/people.js'
172+
// import { team, steeringCommittee } from '../assets/people.js'
175173
useHead({
176174
title: 'MIT Processor DB',
177175
meta: [

0 commit comments

Comments
 (0)