Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
add caveat
Browse files- frontend/src/App.js +16 -0
frontend/src/App.js
CHANGED
@@ -106,6 +106,22 @@ function App() {
|
|
106 |
/>
|
107 |
<Route path="*" element={<Navigate to="/" replace />} />
|
108 |
</Routes>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
</Box>
|
110 |
</Container>
|
111 |
</Router>
|
|
|
106 |
/>
|
107 |
<Route path="*" element={<Navigate to="/" replace />} />
|
108 |
</Routes>
|
109 |
+
<Box
|
110 |
+
component="footer"
|
111 |
+
sx={{
|
112 |
+
mt: 4,
|
113 |
+
textAlign: "center",
|
114 |
+
fontSize: "0.875rem",
|
115 |
+
color: "text.secondary",
|
116 |
+
opacity: 0.7,
|
117 |
+
maxWidth: { xs: "100%", md: "70%" },
|
118 |
+
mx: "auto",
|
119 |
+
}}
|
120 |
+
>
|
121 |
+
We keep processed documents for research purposes, to which you
|
122 |
+
agree by using the space. For a fully private usage, please
|
123 |
+
duplicate the advanced space
|
124 |
+
</Box>
|
125 |
</Box>
|
126 |
</Container>
|
127 |
</Router>
|