diff --git a/src/App.tsx b/src/App.tsx
index 61229f5..b972f76 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -21,6 +21,10 @@ import {
Settings,
UserSettings,
CreateUser,
+ Template,
+ Feature,
+ Category,
+ Prototype,
} from './pages';
import { GetUserByIdQuery, GetUserByIdQueryVariables } from './graphql/types';
import { GET_USER_BY_ID } from './graphql/auth.api';
@@ -87,6 +91,18 @@ const App = () => {
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index a635473..d869530 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -4,6 +4,10 @@ import AdditionalInfo from './Auth/AdditionalInfo';
import ForgotPassword from './Auth/ForgotPassword';
import RecoverAccount from './Auth/RecoverAccount';
import Project from './Project';
+import Template from './Template';
+import Feature from './Feature';
+import Category from './Category';
+import Prototype from './Prototype';
import Users from './Users';
import CreateUser from './CreateUser';
import Settings from './Settings';
@@ -16,6 +20,10 @@ export {
ForgotPassword,
RecoverAccount,
Project,
+ Template,
+ Feature,
+ Category,
+ Prototype,
Users,
CreateUser,
Settings,