changed a lot

This commit is contained in:
Harivansh Rathi 2024-11-25 01:24:37 -05:00
parent ef9ccf22d3
commit 28901128ff
20 changed files with 1794 additions and 526 deletions

View file

@ -1,9 +1,14 @@
const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
return (
<main className="max-w-6xl w-full flex items-center justify-center px-6">
{children}
</main>
)
import { Metadata } from "next"
export const metadata: Metadata = {
title: "Dashboard",
description: "Task management and team collaboration dashboard",
}
export default DashboardLayout
export default function DashboardLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}