Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions src/components/settingComponents/sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,35 @@ export default function Sidebar() {
className="mt-10 flex-none border-r pl-10 pr-10 text-gray-900 sm:pl-4 sm:pr-4"
style={{ borderColor: '#212121' }}
>
<ul className="mr-2 py-2">
<ul className="mr-2 list-none py-2">
<li className="py-1">
<Link href="../settings" passHref>
<div className="px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="flex items-center px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="mr-2 h-1.5 w-1.5 rounded-full bg-blue-600"></div>
General
</div>
</Link>
</li>
<li className="py-1">
<Link href="../settings/security" passHref>
<div className="px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="flex items-center px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="mr-2 h-1.5 w-1.5 rounded-full bg-blue-600"></div>
Security
</div>
</Link>
</li>
<li className="py-1">
<Link href="../settings/preferences" passHref>
<div className="px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="flex items-center px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="mr-2 h-1.5 w-1.5 rounded-full bg-blue-600"></div>
Email Preferences
</div>
</Link>
</li>
<li className="py-1">
<Link href="../settings/billing" passHref>
<div className="px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="flex items-center px-2 py-1 text-lg font-medium text-white hover:text-gray-400 sm:text-base">
<div className="mr-2 h-1.5 w-1.5 rounded-full bg-blue-600"></div>
Billing
</div>
</Link>
Expand Down