ZahirJS commited on
Commit
1bb3ff1
·
verified ·
1 Parent(s): 908d9fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -75,7 +75,7 @@ if __name__ == "__main__":
75
  ) as demo:
76
  gr.Markdown(
77
  """
78
- # Graphify: Generate concept maps, synoptic charts and radial diagrams from JSON!
79
  Choose a graph type and provide your JSON data to generate a visual representation.
80
  All graphs maintain a consistent, elegant style with rounded boxes,
81
  a dark-to-light color gradient, and a clean white background.
@@ -89,6 +89,7 @@ if __name__ == "__main__":
89
  CONCEPT_MAP_JSON,
90
  "Concept Map Generator"
91
  )
 
92
  gr.Markdown("## Example Concept Maps")
93
  with gr.Row(): # <--- Added gr.Row() here for side-by-side layout
94
  gr.Image(
@@ -116,6 +117,7 @@ if __name__ == "__main__":
116
  SYNOPTIC_CHART_JSON,
117
  "Synoptic Chart Generator"
118
  )
 
119
  gr.Markdown("## Example Synoptic Charts")
120
  with gr.Row(): # <--- Added gr.Row() here
121
  gr.Image(
@@ -143,6 +145,7 @@ if __name__ == "__main__":
143
  RADIAL_DIAGRAM_JSON,
144
  "Radial Diagram Generator"
145
  )
 
146
  gr.Markdown("## Example Radial Diagrams")
147
  with gr.Row(): # <--- Added gr.Row() here
148
  gr.Image(
 
75
  ) as demo:
76
  gr.Markdown(
77
  """
78
+ # Graphify: Generate concept maps, synoptic charts and radial diagrams⚡!
79
  Choose a graph type and provide your JSON data to generate a visual representation.
80
  All graphs maintain a consistent, elegant style with rounded boxes,
81
  a dark-to-light color gradient, and a clean white background.
 
89
  CONCEPT_MAP_JSON,
90
  "Concept Map Generator"
91
  )
92
+ gr.Space(height="md") # Added space here
93
  gr.Markdown("## Example Concept Maps")
94
  with gr.Row(): # <--- Added gr.Row() here for side-by-side layout
95
  gr.Image(
 
117
  SYNOPTIC_CHART_JSON,
118
  "Synoptic Chart Generator"
119
  )
120
+ gr.Space(height="md") # Added space here
121
  gr.Markdown("## Example Synoptic Charts")
122
  with gr.Row(): # <--- Added gr.Row() here
123
  gr.Image(
 
145
  RADIAL_DIAGRAM_JSON,
146
  "Radial Diagram Generator"
147
  )
148
+ gr.Space(height="md") # Added space here
149
  gr.Markdown("## Example Radial Diagrams")
150
  with gr.Row(): # <--- Added gr.Row() here
151
  gr.Image(