diff --git a/app/(dashboard)/dashboard/layout.tsx b/app/(dashboard)/dashboard/layout.tsx
index 15f21b2..9849fc5 100644
--- a/app/(dashboard)/dashboard/layout.tsx
+++ b/app/(dashboard)/dashboard/layout.tsx
@@ -1,10 +1,11 @@
import { headers } from "next/headers"
+import { notFound } from "next/navigation"
+import Link from "next/link"
import { getSession } from "@/lib/session"
-import { DashboardBranding } from "@/components/dashboard-branding"
import { DashboardNav } from "@/components/dashboard-nav"
import { UserAccountNav } from "@/components/user-account-nav"
-import { notFound } from "next/navigation"
+import { Icons } from "@/components/icons"
interface DashboardLayoutProps {
children?: React.ReactNode
@@ -30,25 +31,28 @@ export default async function DashboardLayout({
}
return (
- <>
-
-