feat(#145): transform home page into user dashboard #151
@@ -31,7 +31,7 @@ let { mentions }: Props = $props();
|
||||
href={mention.annotationId
|
||||
? `/documents/${mention.documentId}?commentId=${mention.referenceId}&annotationId=${mention.annotationId}`
|
||||
: `/documents/${mention.documentId}?commentId=${mention.referenceId}`}
|
||||
class="font-serif text-sm text-ink hover:text-ink-2"
|
||||
class="font-serif text-lg text-ink hover:text-ink-2"
|
||||
>
|
||||
{mention.actorName ?? ''}
|
||||
{#if mention.type === 'MENTION'}<span class="ml-1 font-sans text-xs text-gray-400"
|
||||
@@ -41,7 +41,7 @@ let { mentions }: Props = $props();
|
||||
>{/if}
|
||||
</a>
|
||||
{:else}
|
||||
<span class="font-serif text-sm text-ink">{mention.actorName ?? ''}</span>
|
||||
<span class="font-serif text-lg text-ink">{mention.actorName ?? ''}</span>
|
||||
{/if}
|
||||
</div>
|
||||
{/each}
|
||||
|
||||
@@ -22,7 +22,7 @@ let { incompleteDocs }: Props = $props();
|
||||
<div class="flex items-center border-b border-line py-2 last:border-0">
|
||||
<a
|
||||
href="/enrich/{doc.id}"
|
||||
class="font-serif text-sm text-ink hover:text-ink-2 hover:underline"
|
||||
class="font-serif text-lg text-ink hover:text-ink-2 hover:underline"
|
||||
>
|
||||
{doc.title}
|
||||
</a>
|
||||
|
||||
@@ -34,7 +34,7 @@ function formatDate(dateStr: string): string {
|
||||
<div class="flex items-center justify-between border-b border-line py-2 last:border-0">
|
||||
<a
|
||||
href="/documents/{doc.id}"
|
||||
class="font-serif text-sm text-ink hover:text-ink-2 hover:underline"
|
||||
class="font-serif text-lg text-ink hover:text-ink-2 hover:underline"
|
||||
>
|
||||
{doc.title}
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user