diff --git a/apps/web/components/repo-list-with-search.tsx b/apps/web/components/repo-list-with-search.tsx
index 92a26a3..b57ec3e 100644
--- a/apps/web/components/repo-list-with-search.tsx
+++ b/apps/web/components/repo-list-with-search.tsx
@@ -223,11 +223,11 @@ export function RepoListWithSearch({
-
+
@@ -235,7 +235,7 @@ export function RepoListWithSearch({
{headerText}
-
+
{!displayedQuery && (
Stars
)}
@@ -254,44 +254,49 @@ export function RepoListWithSearch({
{displayRepos.length > 0 || isGithubSearching ? (
-
+
{displayRepos.map((repo) => {
const highlight =
"highlight" in repo ? (repo.highlight as string) : null
return (
-
+
{highlight ? (
) : (
-
+
{repo.name}
)}
-
+
{!displayedQuery && (
-
+
+ ★
{formatCompactNumber(repo.stars)}
)}
{formatCompactNumber(repo.posts)}
+ posts
{!displayedQuery && (
-
+
{formatRelativeTime(repo.lastActive, now)}
)}
diff --git a/apps/web/components/typography.tsx b/apps/web/components/typography.tsx
index 9409343..3dac8eb 100644
--- a/apps/web/components/typography.tsx
+++ b/apps/web/components/typography.tsx
@@ -83,7 +83,11 @@ export const ListItem = ({
className?: string
children: React.ReactNode
}) => {
- return {children}
+ return (
+
+ {children}
+
+ )
}
export const TableColumnTitle = ({