diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx new file mode 100644 index 0000000..5e2f781 --- /dev/null +++ b/app/dashboard/page.tsx @@ -0,0 +1,13 @@ +// app/dashboard.tsx +import React from "react"; + +const Dashboard: React.FC = () => { + return ( +
+

Dashboard

+

The page after login

+
+ ); +}; + +export default Dashboard; diff --git a/public/Logo.png b/public/Logo.png new file mode 100644 index 0000000..3a6dba3 Binary files /dev/null and b/public/Logo.png differ