Amrrs commited on
Commit
196a5b2
1 Parent(s): 99cccc7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -1
app.py CHANGED
@@ -25,4 +25,29 @@ image_comparison(
25
  img2="https://www.webbcompare.com/img/webb/deep_field_700.jpg",
26
  label1="Hubble",
27
  label2="Webb"
28
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  img2="https://www.webbcompare.com/img/webb/deep_field_700.jpg",
26
  label1="Hubble",
27
  label2="Webb"
28
+ )
29
+
30
+
31
+ st.markdown("# Carina Nebula")
32
+
33
+ # render image-comparison
34
+ image_comparison(
35
+ img1="https://www.webbcompare.com/img/hubble/carina_700.png",
36
+ img2="https://www.webbcompare.com/img/webb/carina_700.jpg",
37
+ label1="Hubble",
38
+ label2="Webb"
39
+ )
40
+
41
+ st.markdown("# Stephan's Quintet")
42
+
43
+ # render image-comparison
44
+ image_comparison(
45
+ img1="https://www.webbcompare.com/img/hubble/stephans_quintet_700.jpg",
46
+ img2="https://www.webbcompare.com/img/webb/stephans_quintet_700.jpg",
47
+ label1="Hubble",
48
+ label2="Webb"
49
+ )
50
+
51
+
52
+
53
+ st.caption("Inspiration Credit - https://www.webbcompare.com/")