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,25 @@
<script setup lang="ts">
defineProps({
title: {
type: String,
required: false,
},
description: {
type: String,
required: false,
},
year: {
type: String,
required: false,
},
});
</script>
<template>
<li class="dark:text-zinc-400 flex flex-col gap-1">
<p class="flex items-baseline gap-2">
<span class="font-display text-2xl text-zinc-500 dark:text-zinc-500">{{ year }}</span>
<span><strong class="font-semibold dark:text-zinc-200">{{ title }}</strong></span>
</p>
<span class="text-sm">{{ description }}</span>
</li>
</template>