diff --git a/src/lib/AccountComponent.svelte b/src/lib/AccountComponent.svelte index cee7fc7..4c987c8 100644 --- a/src/lib/AccountComponent.svelte +++ b/src/lib/AccountComponent.svelte @@ -3,7 +3,9 @@ const { account }: { account: AccountMetadata } = $props(); import { Config } from "../../config"; -
+ + +
{#if account.avatarCid} {/if} -
{account.displayName || account.did}
-
+
+ {account.displayName || account.handle || account.did} +
+
+ + \ No newline at end of file + diff --git a/src/lib/PostComponent.svelte b/src/lib/PostComponent.svelte index 3af49c0..f077582 100644 --- a/src/lib/PostComponent.svelte +++ b/src/lib/PostComponent.svelte @@ -1,6 +1,6 @@ @@ -13,10 +13,17 @@ alt="avatar of {post.displayName}" /> {/if} -
{post.displayName} | {post.authorHandle} | {post.timenotstamp}
+
+ {post.displayName} ( {post.authorHandle} ) + | + {post.timenotstamp} +
-

{post.text}

{#if post.replyingUri} replying to {post.replyingUri.repo} {/if} +

{post.text}

+ {#if post.quotingUri}