Add resources layout

This commit is contained in:
Owen Schwartz
2024-10-13 16:22:31 -04:00
parent 0e705f5767
commit 860e83e277
7 changed files with 170 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Separator } from "@/components/ui/separator"
import { AppearanceForm } from "@/components/appearance-form"
export default function SettingsAppearancePage() {
return (
<div className="space-y-6">
<div>
<h3 className="text-lg font-medium">Appearance</h3>
<p className="text-sm text-muted-foreground">
Customize the appearance of the app. Automatically switch between day
and night themes.
</p>
</div>
<Separator />
<AppearanceForm />
</div>
)
}