Skip to content

Commit 6d4182e

Browse files
committed
🚀 add config for deploy project
1 parent 5c5c397 commit 6d4182e

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

index.html

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,40 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
7+
8+
<title>Dashboard UI</title>
89
</head>
910
<body>
11+
<!-- if javascript is disabled, this content will appear -->
12+
<noscript>
13+
<style type="text/css">
14+
* {
15+
overflow: hidden;
16+
margin: 0;
17+
padding: 0;
18+
}
19+
#root {
20+
display: none;
21+
}
22+
.javascript__disabled {
23+
display: flex;
24+
width: 100%;
25+
height: 100vh;
26+
justify-content: center;
27+
align-items: center;
28+
font-size: 22px;
29+
background-color: #0d1117;
30+
color: #8f8f8f;
31+
}
32+
</style>
33+
<div class="javascript__disabled">
34+
JavaScript disabled, please enable it for the system to function
35+
properly!
36+
</div>
37+
</noscript>
38+
1039
<div id="root"></div>
1140
<script type="module" src="/src/main.tsx"></script>
1241
</body>

public/favicon.ico

10.1 KB
Binary file not shown.

src/components/Score.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Score: React.FC = () => (
77
<span className="font-inter font-semibold text-2xl text-white">
88
NPS Geral
99
</span>
10-
<span className="font-inter font-semibold text-2xl text-custom-green-500 flex-col justify-center items-center gap-2">
10+
<span className="font-inter font-semibold text-2xl text-custom-green-500 flex flex-col justify-center items-center gap-2">
1111
<IconHappyPerson />
1212
Excelente!
1313
</span>

0 commit comments

Comments
 (0)