Index: app/(app)/profile/page.tsx
===================================================================
--- app/(app)/profile/page.tsx	(revision 5332f771ad1c7cd30c339ee3774fb80292a87745)
+++ app/(app)/profile/page.tsx	(revision f25446c2604b812546a301a740e620d0a879011d)
@@ -67,23 +67,4 @@
                 </Link>
 
-                <Link
-                    href="/profile/settings"
-                    className="
-                        flex items-center justify-between
-                        h-14
-                        rounded-2xl
-                        border border-white/35
-                        bg-white/5
-                        px-5
-                        text-white/55
-                        backdrop-blur-md
-                        transition
-                        hover:bg-white/10
-                    "
-                >
-                    <span className={`${poppins.className} text-base`}>Settings</span>
-                    <ChevronRightIcon className="h-5 w-5 text-white/35" />
-                </Link>
-
                 <form
                     action={async () => {
Index: p/(app)/profile/settings/page.tsx
===================================================================
--- app/(app)/profile/settings/page.tsx	(revision 5332f771ad1c7cd30c339ee3774fb80292a87745)
+++ 	(revision )
@@ -1,75 +1,0 @@
-import Link from 'next/link';
-import { poppins } from '@/app/ui/fonts';
-
-export default function ProfileSettingsPage() {
-    return (
-        <div className="w-full px-6 pt-6 pb-10">
-            {/* Back */}
-            <div className="max-w-md mx-auto">
-                <Link
-                    href="/profile"
-                    className="inline-flex items-center text-white/60 hover:text-white/80 transition"
-                >
-                    <span className={`${poppins.className} text-sm`}>← Back</span>
-                </Link>
-            </div>
-
-            {/* Title */}
-            <h1
-                className={`${poppins.className}
-                    text-[40px]
-                    leading-tight
-                    tracking-tight
-                    font-semibold
-                    text-center
-                    text-white
-                    mt-6
-                `}
-            >
-                Settings
-            </h1>
-
-            <div className="mt-10 max-w-md mx-auto space-y-4">
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-
-                <div className="rounded-2xl border border-white/35 bg-white/5 backdrop-blur-md px-5 py-4 text-white/70">
-                    (coming soon)
-                </div>
-            </div>
-        </div>
-    );
-}
