Upload super-ai-translator.html
Browse filesimport streamlit as st
st.title("Sannu da Zuwa!")
st.write("Wannan app dina ne na farko a Hugging Face.")
- super-ai-translator.html +43 -0
super-ai-translator.html
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<title>Super AI Translator</title>
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
| 10 |
+
<style>
|
| 11 |
+
body {
|
| 12 |
+
font-family: 'Plus Jakarta Sans', sans-serif;
|
| 13 |
+
}
|
| 14 |
+
/* Custom Scrollbar */
|
| 15 |
+
::-webkit-scrollbar {
|
| 16 |
+
width: 8px;
|
| 17 |
+
}
|
| 18 |
+
::-webkit-scrollbar-track {
|
| 19 |
+
background: transparent;
|
| 20 |
+
}
|
| 21 |
+
::-webkit-scrollbar-thumb {
|
| 22 |
+
background: #cbd5e1;
|
| 23 |
+
border-radius: 4px;
|
| 24 |
+
}
|
| 25 |
+
::-webkit-scrollbar-thumb:hover {
|
| 26 |
+
background: #94a3b8;
|
| 27 |
+
}
|
| 28 |
+
</style>
|
| 29 |
+
<script src="https://cdn.tailwindcss.com"></script><style data-filename="src/index.css">@tailwind base;
|
| 30 |
+
@tailwind components;
|
| 31 |
+
@tailwind utilities;
|
| 32 |
+
|
| 33 |
+
body {
|
| 34 |
+
margin: 0;
|
| 35 |
+
padding: 0;
|
| 36 |
+
-webkit-font-smoothing: antialiased;
|
| 37 |
+
-moz-osx-font-smoothing: grayscale;
|
| 38 |
+
}</style></head>
|
| 39 |
+
<body class="bg-slate-50 text-slate-900 min-h-screen selection:bg-indigo-100 selection:text-indigo-700">
|
| 40 |
+
<div id="root"></div>
|
| 41 |
+
<script type="module" src="/src/main.tsx"></script>
|
| 42 |
+
</body>
|
| 43 |
+
</html>
|