-
- All feeds
-
+
All feeds
diff --git a/src/views/dashboard/settings/Settings.tsx b/src/views/dashboard/settings/Settings.tsx
index c15c4c9d..1b94db0e 100644
--- a/src/views/dashboard/settings/Settings.tsx
+++ b/src/views/dashboard/settings/Settings.tsx
@@ -1,7 +1,54 @@
+import { useSession } from "next-auth/react";
+
+import { Heading } from "../../../components/dashboard/heading/Heading";
+import { SettingsRow } from "../../../components/dashboard/settingsRow/SettingsRow";
+import {
+ updateUserEmailSchema,
+ updateUserNameSchema,
+ updateUserPasswordSchema,
+} from "../../../utils/validation";
+
export const SettingsView = () => {
+ const { data } = useSession();
+
+ const handleRowChange = (content: string) => {
+ console.log("saving...", content);
+ };
+
return (
-
-
Settings view coming soon...
-
+
+
+ Profile
+
+ This information will be displayed publicly so be careful what you
+ share.
+
+
+
+ {data?.user && (
+
+ )}
+
);
};