Skip to content

Commit faaf2b1

Browse files
committed
Updated profile
1 parent 3e5bc4e commit faaf2b1

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

assets/images/alan.png

-322 KB
Binary file not shown.

assets/images/profile.png

29 KB
Loading

pages/about.vue

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<script setup lang="ts">
22
import { LinkIcon } from '@heroicons/vue/20/solid';
3-
import alanImage from "~/assets/images/alan.png";
3+
import profileImage from '~/assets/images/profile.png';
44
55
const members = [
66
{
7-
name: "Alan Tong",
8-
image: alanImage,
9-
description: "Alan founded the studio back in high school and has been releasing games for it ever since. He's a jack-of-all trades, having interests in programming, digital art, and music. When he's not busy with college work, he enjoys contributing to open source projects and doodling on his iPad.",
10-
role: "Founder",
11-
url: "https://atlinx.net"
7+
name: 'Alina',
8+
image: profileImage,
9+
description:
10+
"Alina founded the studio back in high school and has been releasing games for it ever since. She's a jack-of-all trades, having interests in programming, digital art, and music. When she's not busy with college work, she enjoys contributing to open source projects and doodling on her iPad.",
11+
role: 'Founder',
12+
url: 'https://atlinx.net',
1213
},
1314
];
1415
</script>
@@ -22,12 +23,17 @@ const members = [
2223
<h1 class="text-h1">MISSION</h1>
2324
<p>To build polished and immersive experiences that are fun and fair</p>
2425
<h1 class="text-h1">TEAM</h1>
25-
<div v-for="member in members" class="mt-8 flex flex-row gap-x-4 gap-y-8 flex-wrap">
26-
<img class="rounded-full w-32 h-32" :src="member.image">
27-
<div class="flex flex-col gap-4 flex-1" style="min-width: 17em;">
26+
<div
27+
v-for="member in members"
28+
class="mt-8 flex flex-row gap-x-4 gap-y-8 flex-wrap"
29+
>
30+
<img class="rounded-full w-32 h-32" :src="member.image" />
31+
<div class="flex flex-col gap-4 flex-1" style="min-width: 17em">
2832
<div class="flex flex-row gap-4 flex-wrap">
2933
<h1 class="font-bold upper">{{ member.name }}</h1>
30-
<span class="rounded-full px-4 ring-1 ring-white">{{ member.role }}</span>
34+
<span class="rounded-full px-4 ring-1 ring-white">{{
35+
member.role
36+
}}</span>
3137
<a class="px-4" :href="member.url" target="_blank">
3238
<LinkIcon class="w-4 h-4 mr-2 inline-block" />
3339
<span>{{ member.url }}</span>

0 commit comments

Comments
 (0)