index.tsx 384 B

1234567891011121314
  1. import { AppearanceForm } from './appearance-form'
  2. import ContentSection from '../components/content-section'
  3. export default function SettingsAppearance() {
  4. return (
  5. <ContentSection
  6. title='Appearance'
  7. desc='Customize the appearance of the app. Automatically switch between day
  8. and night themes.'
  9. >
  10. <AppearanceForm />
  11. </ContentSection>
  12. )
  13. }