Initial commit WIP

This commit is contained in:
Mike Conrad
2025-05-08 19:18:45 -04:00
commit 09cbc3f5a3
235 changed files with 25013 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<script setup lang="ts">
interface Award {
title?: string;
year?: string;
description?: string;
}
defineProps({
titleText: {
type: String,
required: false,
},
awards: {
type: Array as PropType<Award[]>,
required: false,
},
});
</script>
<template>
<div class="not-prose flex flex-col gap-4 lg:w-1/2">
<h3 class="uppercase tracking-widest font-light text-zinc-900 dark:text-orange-600">
{{ titleText }}
</h3>
<ul class="space-y-4">
<AwardsItem v-for="(item, index) in awards" :key="index" :title="item.title" :year="item.year" :description="item.description" />
</ul>
</div>
</template>