mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-22 21:06:37 +00:00
19 lines
551 B
TypeScript
19 lines
551 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { AppearanceForm } from "@/app/configuration/appearance/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>
|
|
)
|
|
}
|