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