ZahirJS commited on
Commit
53af13a
·
verified ·
1 Parent(s): 1bb3ff1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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⚡!
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,7 +89,7 @@ if __name__ == "__main__":
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,7 +117,7 @@ if __name__ == "__main__":
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,7 +145,7 @@ if __name__ == "__main__":
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(
 
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
  CONCEPT_MAP_JSON,
90
  "Concept Map Generator"
91
  )
92
+ gr.Markdown("<br>") # Replaced gr.Space with gr.Markdown("<br>") for spacing
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.Markdown("<br>") # Replaced gr.Space with gr.Markdown("<br>") for spacing
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.Markdown("<br>") # Replaced gr.Space with gr.Markdown("<br>") for spacing
149
  gr.Markdown("## Example Radial Diagrams")
150
  with gr.Row(): # <--- Added gr.Row() here
151
  gr.Image(