-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adelino Ngomacha
committed
Jun 29, 2024
1 parent
d036cc6
commit 058cbd4
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
<div class="bg-white"> | ||
<div class="mx-auto max-w-7xl px-6 lg:px-8"> | ||
<ul role="list" class="mx-auto mt-20 grid max-w-2xl grid-cols-2 gap-x-8 gap-y-16 text-center sm:grid-cols-3 md:grid-cols-4 lg:mx-0 lg:max-w-none lg:grid-cols-5 xl:grid-cols-6"> | ||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Chris | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
chris@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Blake | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
blake@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Zoltan | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
zoltan@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Freddy | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
freddy@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Glenn | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
glenn@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Dorell | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
dorell@stacksjs.org | ||
</p> | ||
</li> | ||
|
||
<li> | ||
<img class="mx-auto h-24 w-24 rounded-full" src="https://pbs.twimg.com/profile_images/1707883193054228480/n98q6t1L_400x400.jpg" alt=""> | ||
<h3 class="mt-6 text-base font-semibold leading-7 tracking-tight text-gray-900"> | ||
Avery | ||
</h3> | ||
<p class="text-sm leading-6 text-gray-600"> | ||
avery@stacksjs.org | ||
</p> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters