aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/highlights
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2026-01-19 00:29:47 +0000
committerMohamed Bassem <me@mbassem.com>2026-01-19 00:30:04 +0000
commitaf3a587acaf641007c410e61579eeefe4836e8d7 (patch)
tree3035bbf486cd56e29cc038ac49b54cc1c39b1c17 /apps/web/app/dashboard/highlights
parenta353d9801d8a92ccb333f6721931f720ce3defba (diff)
downloadkarakeep-af3a587acaf641007c410e61579eeefe4836e8d7.tar.zst
fix(ui): Improve visual consistency in all lists and highlights page
Diffstat (limited to 'apps/web/app/dashboard/highlights')
-rw-r--r--apps/web/app/dashboard/highlights/page.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/web/app/dashboard/highlights/page.tsx b/apps/web/app/dashboard/highlights/page.tsx
index 5945de00..ed0b16c0 100644
--- a/apps/web/app/dashboard/highlights/page.tsx
+++ b/apps/web/app/dashboard/highlights/page.tsx
@@ -1,6 +1,5 @@
import type { Metadata } from "next";
import AllHighlights from "@/components/dashboard/highlights/AllHighlights";
-import { Separator } from "@/components/ui/separator";
import { useTranslation } from "@/lib/i18n/server";
import { api } from "@/server/api/client";
import { Highlighter } from "lucide-react";
@@ -18,13 +17,14 @@ export default async function HighlightsPage() {
const { t } = await useTranslation();
const highlights = await api.highlights.getAll({});
return (
- <div className="flex flex-col gap-8 rounded-md border bg-background p-4">
- <span className="flex items-center gap-1 text-2xl">
- <Highlighter className="size-6" />
- {t("common.highlights")}
- </span>
- <Separator />
- <AllHighlights highlights={highlights} />
+ <div className="flex flex-col gap-4">
+ <div className="flex items-center">
+ <Highlighter className="mr-2" />
+ <p className="text-2xl">{t("common.highlights")}</p>
+ </div>
+ <div className="flex flex-col gap-8 rounded-md border bg-background p-4">
+ <AllHighlights highlights={highlights} />
+ </div>
</div>
);
}