diff --git a/inertia/components/dashboard/dashboard_header.tsx b/inertia/components/dashboard/dashboard_header.tsx
index dfae1d7..70d9971 100644
--- a/inertia/components/dashboard/dashboard_header.tsx
+++ b/inertia/components/dashboard/dashboard_header.tsx
@@ -1,6 +1,16 @@
+import { Visibility } from '#enums/visibility';
import { Link } from '@inertiajs/react';
import { route } from '@izzyjs/route/client';
-import { ActionIcon, AppShell, Burger, Group, Menu, Text } from '@mantine/core';
+import {
+ ActionIcon,
+ AppShell,
+ Badge,
+ Burger,
+ Flex,
+ Group,
+ Menu,
+ Text,
+} from '@mantine/core';
import { useTranslation } from 'react-i18next';
import { BsThreeDotsVertical } from 'react-icons/bs';
import { GoPencil } from 'react-icons/go';
@@ -32,7 +42,19 @@ export function DashboardHeader({ navbar, aside }: DashboardHeaderProps) {
hiddenFrom="sm"
size="sm"
/>
- {activeCollection?.name}
+
+
+ {activeCollection?.name}{' '}
+ {activeCollection?.visibility === Visibility.PUBLIC && (
+ {t('visibility.public')}
+ )}
+
+ {activeCollection?.description && (
+
+ {activeCollection.description}
+
+ )}
+