Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
•
51f7f3b
1
Parent(s):
f431da0
add contact info
Browse files- src/text_content.py +28 -3
src/text_content.py
CHANGED
@@ -80,6 +80,8 @@ CREDITS_TEXT = """
|
|
80 |
<p>Collaboration made possible thanks to <a href="https://summerschool.morocco.ai/">AI Summer School</a></p>
|
81 |
"""
|
82 |
|
|
|
|
|
83 |
LOGO = """
|
84 |
<style>
|
85 |
.block-container {
|
@@ -87,9 +89,32 @@ LOGO = """
|
|
87 |
padding-bottom: 0rem;
|
88 |
}
|
89 |
</style>
|
90 |
-
<div
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
</div>
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
|
95 |
REVIEW_TEXT = """**If a request should be reviewed or dropped submit its id here/ إذا كان يجب مراجعة أو حذف طلب، أدخل رقمه هنا:**"""
|
|
|
80 |
<p>Collaboration made possible thanks to <a href="https://summerschool.morocco.ai/">AI Summer School</a></p>
|
81 |
"""
|
82 |
|
83 |
+
# Embed logo and with instagram and linkedin icons with links (to the right of the logo)
|
84 |
+
# https://storage.googleapis.com/storage-annarabic/Nt3awnou(1).png
|
85 |
LOGO = """
|
86 |
<style>
|
87 |
.block-container {
|
|
|
89 |
padding-bottom: 0rem;
|
90 |
}
|
91 |
</style>
|
92 |
+
<div class="block-container">
|
93 |
+
<div style="text-align: center;">
|
94 |
+
<img src="https://storage.googleapis.com/storage-annarabic/Nt3awnou(1).png" alt="Nt3awnou logo" width="200" height="200">
|
95 |
+
</div>
|
96 |
+
<div style="text-align: center">
|
97 |
+
<a href="https://www.instagram.com/nt3awnou_morocco/" style="margin-right: 0.5rem;">
|
98 |
+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/2048px-Instagram_icon.png" alt="Instagram logo" width="30" height="30">
|
99 |
+
</a>
|
100 |
+
<a href="https://www.linkedin.com/in/nt3awnou-morocco-01062a290" style="margin-right: 0.5rem;">
|
101 |
+
<img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn logo" width="30" height="30">
|
102 |
+
</a>
|
103 |
+
<a href="https://linktr.ee/nt3awnou">
|
104 |
+
<img src="https://seeklogo.com/images/L/linktree-logo-6FC3ADB679-seeklogo.com.png" alt="Linktree logo" width="30" height="30">
|
105 |
+
</a>
|
106 |
+
</div>
|
107 |
</div>
|
108 |
+
|
109 |
+
# """
|
110 |
+
# <img src="https://storage.googleapis.com/storage-annarabic/Nt3awnou(1).png" alt="Nt3awnou logo" width="200" height="200">
|
111 |
+
|
112 |
+
# <div style="text-align: center;">
|
113 |
+
# <a href="https://www.instagram.com/nt3awnou_morocco/">
|
114 |
+
# <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/2048px-Instagram_icon.png" alt="Instagram logo" width="30" height="30">
|
115 |
+
# </a>
|
116 |
+
# <a href="https://www.linkedin.com/in/nt3awnou-morocco-01062a290">
|
117 |
+
# <img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn logo" width="30" height="30">
|
118 |
+
# </a>
|
119 |
|
120 |
REVIEW_TEXT = """**If a request should be reviewed or dropped submit its id here/ إذا كان يجب مراجعة أو حذف طلب، أدخل رقمه هنا:**"""
|