-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Add first speaker of CLI week
- Loading branch information
Showing
2 changed files
with
30 additions
and
4 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,19 @@ | ||
<script lang="ts"> | ||
const { name, image_url, date, time, title, topic } = $props(); | ||
</script> | ||
|
||
<div class="my-4 rounded-2xl bg-neutral-800 px-6 py-4 w-4/5 flex gap-6"> | ||
<img src={image_url} alt={name} class="rounded-full w-[100px]"/> | ||
<div class="flex flex-col gap-2"> | ||
<div class="flex flex-col gap-1 mb-2"> | ||
<span>{name}</span> | ||
<small class="text-lime-600">{title}</small> | ||
</div> | ||
<span>📅 {date}</span> | ||
<span>🕙 {time}</span> | ||
</div> | ||
<div class="h-100 bg-lime-600 w-[1px]"></div> | ||
<div class="flex h-100 items-center text-center"> | ||
<span class="text-xl">{topic}</span> | ||
</div> | ||
</div> |
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