index.tsx 518 B

123456789101112131415161718
  1. import { AppearanceForm } from './appearance-form'
  2. import { Separator } from '@/components/ui/separator'
  3. export default function SettingsAppearance() {
  4. return (
  5. <div className='space-y-6'>
  6. <div>
  7. <h3 className='text-lg font-medium'>Appearance</h3>
  8. <p className='text-sm text-muted-foreground'>
  9. Customize the appearance of the app. Automatically switch between day
  10. and night themes.
  11. </p>
  12. </div>
  13. <Separator />
  14. <AppearanceForm />
  15. </div>
  16. )
  17. }