chore: Refactor route components for better organization and consistency

This commit is contained in:
n4ze3m
2024-05-13 12:44:44 +05:30
parent 79f31460f1
commit e6cf76d270
13 changed files with 123 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
import { SettingsBody } from "~/components/Sidepanel/Settings/body"
import { SidepanelSettingsHeader } from "~/components/Sidepanel/Settings/header"
export const SidepanelSettings = () => {
const SidepanelSettings = () => {
return (
<div className="flex bg-neutral-50 dark:bg-[#171717] flex-col min-h-screen mx-auto max-w-7xl">
<div className="sticky bg-white dark:bg-[#171717] top-0 z-10">
@@ -11,3 +11,5 @@ export const SidepanelSettings = () => {
</div>
)
}
export default SidepanelSettings