diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4509799..ef4c57f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,7 +1,12 @@
-import React from 'react';
+import Dashboard from '@/app/(protected)/dashboard/page.tsx';
+import { WrappedRoutes } from '@/shared/Layout/Routes/WrappedRoutes';
function page() {
- return
Temp Landing Page
;
+ return (
+
+
+
+ );
}
export default page;
diff --git a/tsconfig.json b/tsconfig.json
index 2fab691..d65f585 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -17,7 +17,8 @@
"@/constants/*": ["shared/constants/*"],
"@/containers/*": ["containers/*"],
"@/routes/*": ["routes/*"],
- "@/components/*": ["shared/components/*"]
+ "@/components/*": ["shared/components/*"],
+ "@/app/*": ["app/*"],
},
/* Bundler mode */
"moduleResolution": "bundler",