diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx
index 009f37a..7941280 100644
--- a/src/app/profile/page.tsx
+++ b/src/app/profile/page.tsx
@@ -5,7 +5,7 @@ import { authAPI } from '@/lib/authApi';
import toast from 'react-hot-toast';
import { useRouter } from 'next/navigation';
import { useEffect, useState } from 'react';
-import { Loader2, User, LogOut, Trash2 } from 'lucide-react';
+import { Loader2, User, LogOut, Trash2, ArrowLeft } from 'lucide-react';
import Modal from '@/components/ui/Modal';
export default function ProfilePage() {
@@ -51,6 +51,15 @@ export default function ProfilePage() {
return (
+
+
+
{userName?.split(' ').map(n => n[0]).join('').toUpperCase() || ''}
diff --git a/src/app/settings/page.tsx b/src/app/settings/page.tsx
index 11fe968..365c89c 100644
--- a/src/app/settings/page.tsx
+++ b/src/app/settings/page.tsx
@@ -1,11 +1,26 @@
'use client';
+import { useRouter } from 'next/navigation';
+import { ArrowLeft } from 'lucide-react';
import SettingsContent from '@/components/SettingsContent';
export default function SettingsPage() {
+ const router = useRouter();
+
return (
-
+
+
+
+
+
+
);
}
\ No newline at end of file