robiriu commited on
Commit
ba433b8
·
verified ·
1 Parent(s): 9515f4e

Upload dashboard/src/App.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. dashboard/src/App.tsx +9 -4
dashboard/src/App.tsx CHANGED
@@ -36,11 +36,16 @@ export default function App() {
36
  </div>
37
 
38
  <footer
39
- className="subtle"
40
- style={{ fontSize: "var(--text-xs)", textAlign: "center" }}
 
 
 
 
 
41
  >
42
- Built for the Opus 4.7 hackathon. GeoForce-Solver (implicit Darcy +
43
- energy) + v1.1 ReservoirCNN surrogate.
44
  </footer>
45
  </div>
46
  );
 
36
  </div>
37
 
38
  <footer
39
+ style={{
40
+ fontSize: "var(--text-xs)",
41
+ textAlign: "center",
42
+ color: "var(--fg-subtle)",
43
+ borderTop: "1px solid var(--border-subtle)",
44
+ paddingTop: "var(--space-4)",
45
+ }}
46
  >
47
+ <span style={{ color: "var(--accent)" }}>GeoForce</span> by ForceX AI
48
+ &middot; GeoForce-Solver + ReservoirCNN v1.1 surrogate
49
  </footer>
50
  </div>
51
  );