diff --git a/apps/web/src/app/dashboard/collections/[id]/page.tsx b/apps/web/src/app/dashboard/collections/[id]/page.tsx index a158527..5337279 100644 --- a/apps/web/src/app/dashboard/collections/[id]/page.tsx +++ b/apps/web/src/app/dashboard/collections/[id]/page.tsx @@ -6,6 +6,7 @@ import { Icon } from '@tpmjs/ui/Icon/Icon'; import Link from 'next/link'; import { useParams, useRouter } from 'next/navigation'; import { useCallback, useEffect, useState } from 'react'; +import { AppHeader } from '~/components/AppHeader'; import { AddToolSearch } from '~/components/collections/AddToolSearch'; import { CollectionForm } from '~/components/collections/CollectionForm'; import { CollectionToolList } from '~/components/collections/CollectionToolList'; @@ -221,6 +222,7 @@ export default function CollectionDetailPage(): React.ReactElement { if (isLoading) { return (
+
@@ -240,6 +242,7 @@ export default function CollectionDetailPage(): React.ReactElement { if (error || !collection) { return (
+
@@ -258,6 +261,7 @@ export default function CollectionDetailPage(): React.ReactElement { return (
+
{/* Header */}
diff --git a/apps/web/src/app/dashboard/collections/page.tsx b/apps/web/src/app/dashboard/collections/page.tsx index 97725f5..3e865d7 100644 --- a/apps/web/src/app/dashboard/collections/page.tsx +++ b/apps/web/src/app/dashboard/collections/page.tsx @@ -5,6 +5,7 @@ import { Icon } from '@tpmjs/ui/Icon/Icon'; import Link from 'next/link'; import { useRouter } from 'next/navigation'; import { useCallback, useEffect, useState } from 'react'; +import { AppHeader } from '~/components/AppHeader'; import { CollectionForm } from '~/components/collections/CollectionForm'; import { CollectionList } from '~/components/collections/CollectionList'; @@ -110,6 +111,7 @@ export default function CollectionsPage(): React.ReactElement { if (isLoading) { return (
+
@@ -127,6 +129,7 @@ export default function CollectionsPage(): React.ReactElement { if (error) { return (
+
@@ -141,6 +144,7 @@ export default function CollectionsPage(): React.ReactElement { return (
+
{/* Header */}
diff --git a/apps/web/src/app/dashboard/page.tsx b/apps/web/src/app/dashboard/page.tsx index 14a76f3..fff6c0c 100644 --- a/apps/web/src/app/dashboard/page.tsx +++ b/apps/web/src/app/dashboard/page.tsx @@ -1,3 +1,4 @@ +import { AppHeader } from '@/components/AppHeader'; import { SignOutButton } from '@/components/auth/SignOutButton'; import { auth } from '@/lib/auth'; import { Icon } from '@tpmjs/ui/Icon/Icon'; @@ -16,6 +17,7 @@ export default async function DashboardPage() { return (
+

Dashboard