diff --git a/frontend/src/components/Settings.jsx b/frontend/src/components/Settings.jsx index 8a9232f..7db66e1 100644 --- a/frontend/src/components/Settings.jsx +++ b/frontend/src/components/Settings.jsx @@ -1,24 +1,158 @@ -import React from 'react'; -import { useNavigate } from 'react-router-dom'; -import backicon from '../assets/svg/backicon.svg'; -const Settings = () => { - const navigate = useNavigate(); +import React, { useState } from 'react'; +export default function Settings() { + const [activeSection, setActiveSection] = useState('account'); + + const sections = [ + { id: 'account', label: 'Account Settings' }, + { id: 'privacy', label: 'Privacy' }, + { id: 'notifications', label: 'Notifications' }, + { id: 'security', label: 'Security' }, + { id: 'display', label: 'Display & Accessibility' }, + ]; -const HomeClick = () => { - navigate('/'); // Navigates to the home page - }; return ( - <> - -