yasserrmd commited on
Commit
cabf737
·
verified ·
1 Parent(s): c7877ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -16
app.py CHANGED
@@ -57,24 +57,24 @@ css = """
57
  """
58
 
59
  examples = [
60
- {"occasion": "Wedding", "theme": "Vintage Elegance", "colors": "white and gold"},
61
- {"occasion": "Corporate Anniversary", "theme": "Legacy & Growth", "colors": "navy and silver"},
62
- {"occasion": "Product Launch", "theme": "Innovation Spark", "colors": "blue and white"},
63
- {"occasion": "Team Appreciation", "theme": "Together We Thrive", "colors": "green and gold"},
64
- {"occasion": "Award Ceremony", "theme": "Excellence Awards", "colors": "black and gold"},
65
- {"occasion": "Milestone Celebration", "theme": "10 Years Strong", "colors": "emerald green and silver"},
66
- {"occasion": "Holiday Party", "theme": "Winter Festivity", "colors": "silver and blue"},
67
- {"occasion": "Sales Achievement", "theme": "Peak Performers", "colors": "crimson and gray"},
68
- {"occasion": "Client Appreciation", "theme": "Thank You Event", "colors": "ivory and gold"},
69
- {"occasion": "Office Opening", "theme": "New Beginnings", "colors": "teal and white"},
70
- {"occasion": "Retirement Celebration", "theme": "Years of Dedication", "colors": "bronze and navy"},
71
- {"occasion": "Quarterly Town Hall", "theme": "United Vision", "colors": "purple and silver"},
72
- {"occasion": "Annual Conference", "theme": "Forward Together", "colors": "black and royal blue"},
73
- {"occasion": "Workshop Event", "theme": "Skill Building", "colors": "orange and gray"},
74
- {"occasion": "Networking Gala", "theme": "Professional Connections", "colors": "champagne and gold"},
75
- {"occasion": "Leadership Retreat", "theme": "Inspire & Lead", "colors": "forest green and white"},
76
  ]
77
 
 
78
  with gr.Blocks(css=css) as demo:
79
  with gr.Column(elem_id="col-container"):
80
  gr.Markdown("# Cake & Gift Design Inspiration")
 
57
  """
58
 
59
  examples = [
60
+ ["Corporate Anniversary", "Legacy & Growth", "navy and silver"],
61
+ ["Product Launch", "Innovation Spark", "blue and white"],
62
+ ["Team Appreciation", "Together We Thrive", "green and gold"],
63
+ ["Award Ceremony", "Excellence Awards", "black and gold"],
64
+ ["Milestone Celebration", "10 Years Strong", "emerald green and silver"],
65
+ ["Holiday Party", "Winter Festivity", "silver and blue"],
66
+ ["Sales Achievement", "Peak Performers", "crimson and gray"],
67
+ ["Client Appreciation", "Thank You Event", "ivory and gold"],
68
+ ["Office Opening", "New Beginnings", "teal and white"],
69
+ ["Retirement Celebration", "Years of Dedication", "bronze and navy"],
70
+ ["Quarterly Town Hall", "United Vision", "purple and silver"],
71
+ ["Annual Conference", "Forward Together", "black and royal blue"],
72
+ ["Workshop Event", "Skill Building", "orange and gray"],
73
+ ["Networking Gala", "Professional Connections", "champagne and gold"],
74
+ ["Leadership Retreat", "Inspire & Lead", "forest green and white"],
 
75
  ]
76
 
77
+
78
  with gr.Blocks(css=css) as demo:
79
  with gr.Column(elem_id="col-container"):
80
  gr.Markdown("# Cake & Gift Design Inspiration")