leadingbridge commited on
Commit
f91c350
·
verified ·
1 Parent(s): 1fe3879

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -62,6 +62,19 @@ with gr.Blocks() as demo:
62
 
63
  # Bind the function to inputs and outputs using the button
64
  load_button.click(fn=order_csv, inputs=[file_input, supplier_input, order_number_input], outputs=[output_df, output_file])
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  # Run the interface
67
  demo.launch()
 
62
 
63
  # Bind the function to inputs and outputs using the button
64
  load_button.click(fn=order_csv, inputs=[file_input, supplier_input, order_number_input], outputs=[output_df, output_file])
65
+
66
+ # Updated hyperlink block with sorted hyperlinks.
67
+ gr.HTML(
68
+ """
69
+ <div style="text-align: center; font-size: 16px; margin-top: 20px;">
70
+ <a href="https://huggingface.co/spaces/leadingbridge/shipping-dhl-e-commerce">DHL Ecommerce</a> |
71
+ <a href="https://huggingface.co/spaces/leadingbridge/shipping-ec-ship">EC-Ship</a> |
72
+ <a href="https://huggingface.co/spaces/leadingbridge/shipping-fedex">Fedex</a> |
73
+ <a href="https://huggingface.co/spaces/leadingbridge/tss-order">Order Processing</a> |
74
+ <a href="https://huggingface.co/spaces/leadingbridge/shipping-UPS">UPS</a>
75
+ </div>
76
+ """
77
+ )
78
 
79
  # Run the interface
80
  demo.launch()