mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 05:02:11 +00:00
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Dashboard",
|
|
description: "Task management and team collaboration dashboard",
|
|
}
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return children
|
|
}
|