import React from "react"; import Header from "@/app/(main)/header"; import BlurLayers from "@/components/BlurLayer"; type DashboardProps = { children: React.ReactNode; }; export default function MainLayout({ children }: DashboardProps) { return (