File size: 371 Bytes
af4a394
e93019b
f5e7d43
 
af4a394
f5e7d43
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

def preference_interface(preference_section):
    with preference_section:
        gr.Markdown("Welcome to the Preferences Page!")
        gr.Markdown("Customize your settings here.")
        gr.Textbox(label="Preference 1", placeholder="Enter your preference")
        gr.Checkbox(label="Enable Notifications")
        gr.Button("Save Preferences")