crcdng commited on
Commit
e52ba14
·
1 Parent(s): 0afdf79
Files changed (3) hide show
  1. README.md +2 -0
  2. app.py +4 -3
  3. styles.css +5 -1
README.md CHANGED
@@ -13,6 +13,8 @@ tags:
13
  short_description: Can humanity survive the next 7 days?
14
  ---
15
 
 
 
16
  icons
17
  icons by christos hooper via ICON Repo (CC BY 3.0)
18
  https://www.iconrepo.com/collection/64921/end-of-the-world-a-collection-of-contemporary/
 
13
  short_description: Can humanity survive the next 7 days?
14
  ---
15
 
16
+ Video: https://youtu.be/qTsErsKAdZM
17
+
18
  icons
19
  icons by christos hooper via ICON Repo (CC BY 3.0)
20
  https://www.iconrepo.com/collection/64921/end-of-the-world-a-collection-of-contemporary/
app.py CHANGED
@@ -206,8 +206,9 @@ def gradio_interface():
206
  }
207
  </style>
208
  <center>
209
- <h1 style='font-family: Monitorica; font-size: 42px;'> Your Doomsweek MCP Assistant </h1>
210
- </center>
 
211
  """
212
 
213
  with gr.Row():
@@ -264,4 +265,4 @@ if __name__ == "__main__":
264
  print("Warning: ANTHROPIC_API_KEY not found in environment. Please set it in your .env file.")
265
 
266
  interface = gradio_interface()
267
- interface.launch(debug=True, allowed_paths=["monitorica.bold.otf", "agent_a.jpg", "agent_b.jpg", "space_svgrepo_com_small.jpg"],)
 
206
  }
207
  </style>
208
  <center>
209
+
210
+ <div><h1 style='font-family: Monitorica; font-size: 42px;'> Your <span class='skew-shake-x'>Doomsweek</span> MCP Assistant </h1>
211
+ </center></div>
212
  """
213
 
214
  with gr.Row():
 
265
  print("Warning: ANTHROPIC_API_KEY not found in environment. Please set it in your .env file.")
266
 
267
  interface = gradio_interface()
268
+ interface.launch(debug=True, allowed_paths=["monitorica.bold.otf", "agent_a.jpg", "agent_b.jpg", "space_svgrepo_com_small.jpg", "styles.css"],)
styles.css CHANGED
@@ -1,9 +1,13 @@
1
 
2
- @keyframes skew-x-shaking {
3
  0% { transform: skewX(-15deg); }
4
  5% { transform: skewX(15deg); }
5
  10% { transform: skewX(-15deg); }
6
  15% { transform: skewX(15deg); }
7
  20% { transform: skewX(0deg); }
8
  100% { transform: skewX(0deg); }
 
 
 
 
9
  }
 
1
 
2
+ @keyframes skew-x-shake {
3
  0% { transform: skewX(-15deg); }
4
  5% { transform: skewX(15deg); }
5
  10% { transform: skewX(-15deg); }
6
  15% { transform: skewX(15deg); }
7
  20% { transform: skewX(0deg); }
8
  100% { transform: skewX(0deg); }
9
+ }
10
+
11
+ span.skew-shake-x {
12
+ animation: skew-x-shake 1.3s infinite;
13
  }