Spaces:
Sleeping
Sleeping
Allen Park
commited on
Commit
·
e71a07e
1
Parent(s):
ed9ab49
fix(add logo.svg & upload logo)
Browse files
app.py
CHANGED
@@ -65,13 +65,16 @@ EXAMPLES = [
|
|
65 |
}
|
66 |
]
|
67 |
|
|
|
|
|
|
|
68 |
HEADER = """
|
69 |
# Patronus Lynx Demo
|
70 |
<table bgcolor="#1E2432" cellspacing="0" cellpadding="0" width="450">
|
71 |
<tr style="height:50px;">
|
72 |
<td style="text-align: center;">
|
73 |
<a href="https://www.patronus.ai">
|
74 |
-
|
75 |
</a>
|
76 |
</td>
|
77 |
</tr>
|
|
|
65 |
}
|
66 |
]
|
67 |
|
68 |
+
with open('logo.svg', 'r') as file:
|
69 |
+
logo_svg = file.read()
|
70 |
+
|
71 |
HEADER = """
|
72 |
# Patronus Lynx Demo
|
73 |
<table bgcolor="#1E2432" cellspacing="0" cellpadding="0" width="450">
|
74 |
<tr style="height:50px;">
|
75 |
<td style="text-align: center;">
|
76 |
<a href="https://www.patronus.ai">
|
77 |
+
{logo_svg}
|
78 |
</a>
|
79 |
</td>
|
80 |
</tr>
|
logo.svg
ADDED
|