Refactor: Apply consistent styling

Apply consistent styling to the settings page, similar to other pages in the application.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 05:34:40 +00:00
parent 4bf81937ca
commit a12f8211cb

View File

@@ -7,6 +7,7 @@ import { User, CreditCard, Bell, Lock, HelpCircle, LogOut, ChevronRight } from '
import { cn } from '@/lib/utils'; import { cn } from '@/lib/utils';
import { useAuth } from '@/contexts/auth'; import { useAuth } from '@/contexts/auth';
import { useToast } from '@/hooks/useToast.wrapper'; import { useToast } from '@/hooks/useToast.wrapper';
const SettingsOption = ({ const SettingsOption = ({
icon: Icon, icon: Icon,
label, label,
@@ -35,6 +36,7 @@ const SettingsOption = ({
</div> </div>
</div>; </div>;
}; };
const Settings = () => { const Settings = () => {
const navigate = useNavigate(); const navigate = useNavigate();
const { const {
@@ -44,18 +46,21 @@ const Settings = () => {
const { const {
toast toast
} = useToast(); } = useToast();
const handleLogout = async () => { const handleLogout = async () => {
await signOut(); await signOut();
navigate('/login'); navigate('/login');
}; };
const handleClick = (path: string) => { const handleClick = (path: string) => {
navigate(path); navigate(path);
}; };
return <div className="min-h-screen bg-neuro-background pb-24"> return <div className="min-h-screen bg-neuro-background pb-24">
<div className="max-w-md mx-auto px-6"> <div className="max-w-md mx-auto px-6">
{/* Header */} {/* Header */}
<header className="py-8"> <header className="py-4">
<h1 className="font-bold neuro-text mb-6 text-xl"></h1> <h1 className="font-bold neuro-text mb-3 text-xl"></h1>
{/* User Profile */} {/* User Profile */}
<div className="neuro-flat p-6 mb-8"> <div className="neuro-flat p-6 mb-8">
@@ -117,4 +122,5 @@ const Settings = () => {
<NavBar /> <NavBar />
</div>; </div>;
}; };
export default Settings; export default Settings;