'use client'; import React from 'react'; import { Typography, Paper } from '@mui/material'; const DashboardPage = () => { return (
Dashboard Overview {/* Add your dashboard content here */}
); }; export default DashboardPage;