Mitchell Magro 88c5e2123e s
2025-06-23 10:04:40 +02:00

13 lines
183 B
TypeScript

'use client';
import { HomePage } from "@/app/components/pages/homepage/homepage";
const DashboardPage = () => {
return (
<HomePage />
);
};
export default DashboardPage;