2024-02-04 00:56:42 +05:30
|
|
|
import { SettingsBody } from "~components/Sidepanel/Settings/body"
|
2024-02-02 00:13:10 +05:30
|
|
|
import { SidepanelSettingsHeader } from "~components/Sidepanel/Settings/header"
|
|
|
|
|
|
|
|
|
|
export const SidepanelSettings = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex bg-white dark:bg-black flex-col min-h-screen mx-auto max-w-7xl">
|
|
|
|
|
<div className="sticky top-0 z-10">
|
|
|
|
|
<SidepanelSettingsHeader />
|
|
|
|
|
</div>
|
2024-02-04 00:56:42 +05:30
|
|
|
<SettingsBody />
|
2024-02-02 00:13:10 +05:30
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|