-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 943 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TranslationTools</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>
<p>
JavaScript is required to use this site. Please enable JavaScript in
your browser settings.
</p>
</noscript>
<script>
console.log(
"%c 欢迎预览 TranslationTools",
"font-size: 18px; color: #fff; background: linear-gradient(90deg, #34d399, #4ade80, #f87171); font-weight: bold; font-family: 'Comic Sans MS', 'Arial', sans-serif; -webkit-background-clip: text; padding: 8px 16px; border: 2px dashed #60a5fa; border-radius: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2);"
);
</script>
</body>
</html>