From e1c5bcfd2eb406ec7c9c29e2b7838b7e0c11a3a1 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Thu, 29 Feb 2024 15:28:58 +0000 Subject: ui: Slightly better looking AllTags page --- packages/web/app/dashboard/tags/page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'packages/web/app/dashboard') diff --git a/packages/web/app/dashboard/tags/page.tsx b/packages/web/app/dashboard/tags/page.tsx index 4b12fe35..98f227fa 100644 --- a/packages/web/app/dashboard/tags/page.tsx +++ b/packages/web/app/dashboard/tags/page.tsx @@ -1,3 +1,4 @@ +import { Separator } from "@/components/ui/separator"; import { getServerAuthSession } from "@/server/auth"; import { db } from "@hoarder/db"; import { bookmarkTags, tagsOnBookmarks } from "@hoarder/db/schema"; @@ -8,13 +9,10 @@ import { redirect } from "next/navigation"; function TagPill({ name, count }: { name: string; count: number }) { return ( - {name} - - {count} - + {name} {count} ); } @@ -52,7 +50,7 @@ export default async function TagsPage() {
All Tags
-
{tagPill}
+
{tagPill}
); } -- cgit v1.2.3-70-g09d2