This commit is contained in:
2026-05-15 23:06:44 +03:30
parent 41789ec221
commit 97485b7a67
22 changed files with 1609 additions and 665 deletions

View File

@@ -1,4 +1,5 @@
import { Link } from '@inertiajs/react';
import { Palette, ShieldCheck, UserRound } from 'lucide-react';
import type { PropsWithChildren } from 'react';
import Heading from '@/components/heading';
import { Button } from '@/components/ui/button';
@@ -14,17 +15,17 @@ const sidebarNavItems: NavItem[] = [
{
title: 'Profile',
href: edit(),
icon: null,
icon: UserRound,
},
{
title: 'Security',
href: editSecurity(),
icon: null,
icon: ShieldCheck,
},
{
title: 'Appearance',
href: editAppearance(),
icon: null,
icon: Palette,
},
];
@@ -38,7 +39,7 @@ export default function SettingsLayout({ children }: PropsWithChildren) {
description="Manage your profile and account settings"
/>
<div className="flex flex-col lg:flex-row lg:space-x-12">
<div className="flex flex-col gap-6 lg:flex-row">
<aside className="w-full max-w-xl lg:w-48">
<nav
className="flex flex-col space-y-1 space-x-0"
@@ -51,7 +52,8 @@ export default function SettingsLayout({ children }: PropsWithChildren) {
variant="ghost"
asChild
className={cn('w-full justify-start', {
'bg-muted': isCurrentOrParentUrl(item.href),
'bg-accent text-accent-foreground':
isCurrentOrParentUrl(item.href),
})}
>
<Link href={item.href}>
@@ -68,7 +70,7 @@ export default function SettingsLayout({ children }: PropsWithChildren) {
<Separator className="my-6 lg:hidden" />
<div className="flex-1 md:max-w-2xl">
<section className="max-w-xl space-y-12">
<section className="max-w-xl space-y-12 rounded-md border bg-card p-5 shadow-sm">
{children}
</section>
</div>