diff --git a/app/src/components/CommentCard.tsx b/app/src/components/CommentCard.tsx index e96561d..1fb81f5 100644 --- a/app/src/components/CommentCard.tsx +++ b/app/src/components/CommentCard.tsx @@ -85,140 +85,112 @@ const CommentCard: React.FC = ({ }; return ( -
-
-
-
- - {score} - -
- {commentVotePending && ( - - syncing… - - )} +
+
+ {/* Vote column */} +
+ + 0 ? 'text-primary' : score < 0 ? 'text-red-400' : 'text-muted-foreground'}`}> + {score} + +
-
-
-
- - - - - {formatDistanceToNow(new Date(comment.timestamp), { - addSuffix: true, - })} - - -
-
- 50 ? '...' : '') - } - /> - -
+ {/* Content */} +
+ {/* Metadata */} +
+ + · + + {formatDistanceToNow(new Date(comment.timestamp), { + addSuffix: true, + })} + + {commentVotePending && ( + <> + · + syncing + + )}
-
+ {/* Content */} +
-
+ {/* Actions */} +
+ + 50 ? '...' : '') + } + /> {canModerate && !isModerated && !isOwnComment && ( - - - - - -

Moderate comment

-
-
+ )} {canModerate && isModerated && !isOwnComment && ( - - - - - -

Unmoderate comment

-
-
+ )} {cellId && canModerate && !isOwnComment && ( - - - - - -

Moderate user

-
-
+ )}
diff --git a/app/src/components/Footer.tsx b/app/src/components/Footer.tsx index c7a3051..3fff6ca 100644 --- a/app/src/components/Footer.tsx +++ b/app/src/components/Footer.tsx @@ -48,7 +48,7 @@ const Footer: React.FC = () => {
- Licensed under CC-BY-SA + Reference client · build your own with @opchan/core
diff --git a/app/src/components/Header.tsx b/app/src/components/Header.tsx index 2aebbac..1327545 100644 --- a/app/src/components/Header.tsx +++ b/app/src/components/Header.tsx @@ -345,6 +345,21 @@ const Header = () => {
+ {/* Builder Banner */} +
+ + Reference client on top of @opchan/core. UI is intentionally bare. + + + Build your own → + +
+ {/* Navigation Bar (Desktop) */}