Geraldine commited on
Commit
4d8b3f6
·
verified ·
1 Parent(s): c9ed75d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -0
app.py CHANGED
@@ -206,6 +206,36 @@ app.layout = html.Div([
206
  html.Div(id="status"),
207
  dcc.Store(id="omeka-client-config", storage_type="session"),
208
  ]),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  ])
210
 
211
  # -------------------- UI Callbacks --------------------
 
206
  html.Div(id="status"),
207
  dcc.Store(id="omeka-client-config", storage_type="session"),
208
  ]),
209
+
210
+ # Footer
211
+ html.Footer([
212
+ html.Hr(),
213
+ dbc.Container([
214
+ dbc.Row([
215
+ dbc.Col([
216
+ html.Img(src="./SmartBibl.IA_Solutions.png", height="50"),
217
+ html.Small([
218
+ html.Br(),
219
+ html.A("Géraldine Geoffroy", href="mailto:grldn.geoffroy@gmail.com", className="text-muted")
220
+ ])
221
+ ]),
222
+ dbc.Col([
223
+ html.H5("Code source"),
224
+ html.Ul([
225
+ html.Li(html.A("Github", href="https://github.com/gegedenice/openalex-explorer", className="text-muted", target="_blank"))
226
+ ])
227
+ ]),
228
+ dbc.Col([
229
+ html.H5("Ressources"),
230
+ html.Ul([
231
+ html.Li(html.A("Nomic Atlas", href="https://atlas.nomic.ai/", target="_blank", className="text-muted")),
232
+ html.Li(html.A("Model nomic-embed-text-v1.5", href="https://huggingface.co/nomic-ai/nomic-embed-text-v1.5", target="_blank", className="text-muted")),
233
+ html.Li(html.A("Model nomic-embed-vision-v1.5", href="https://huggingface.co/nomic-ai/nomic-embed-vision-v1.5", target="_blank", className="text-muted"))
234
+ ])
235
+ ])
236
+ ])
237
+ ])
238
+ ], className="mt-5 p-3 bg-light border-top")
239
  ])
240
 
241
  # -------------------- UI Callbacks --------------------