ricklon commited on
Commit
4393dfe
1 Parent(s): 55e8666

added defaults again

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -60,14 +60,14 @@ def create_postcard(name, tagline, description, events, location, hours, contact
60
  iface = gr.Interface(
61
  fn=create_postcard,
62
  inputs=[
63
- gr.Textbox(label="Makerspace Name"),
64
- gr.Textbox(label="Tagline or Mission Statement"),
65
- gr.TextArea(label="Description of Services"),
66
- gr.TextArea(label="Upcoming Events"),
67
- gr.Textbox(label="Location"),
68
- gr.Textbox(label="Hours of Operation"),
69
- gr.Textbox(label="Contact Information"),
70
- gr.Textbox(label="Call to Action"),
71
  gr.Image(label="Upload Logo", type="pil")
72
  ],
73
  outputs="file",
 
60
  iface = gr.Interface(
61
  fn=create_postcard,
62
  inputs=[
63
+ gr.Textbox(label="Makerspace Name", value="FUBAR Labs"),
64
+ gr.Textbox(label="Tagline or Mission Statement", value="Promoting education & collaboration through technical, scientific, and artistic skills."),
65
+ gr.TextArea(label="Description of Services", value="FUBAR Labs is a community space that offers workshops, collaborative projects, and educational events in STEM and arts."),
66
+ gr.TextArea(label="Upcoming Events", value="AI study GROUP, 3D Printing, Fusion 360, KiCAD"),
67
+ gr.Textbox(label="Location", value="1510b Jersey Avenue, North Brunswick, NJ 08902"),
68
+ gr.Textbox(label="Hours of Operation", value="Thurs 7:30 PM - 9:30 PM, Sun: 1:30 PM - 4:30 PM"),
69
+ gr.Textbox(label="Contact Information", value="Phone: 732-50-FUBAR\nEmail: info@fubarlabs.org"),
70
+ gr.Textbox(label="Call to Action", value="Join us and bring your ideas to life! Visit our website for more info."),
71
  gr.Image(label="Upload Logo", type="pil")
72
  ],
73
  outputs="file",