-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 2.1 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title id="title">Chat</title>
<link rel="stylesheet" href="styles.css">
<!--! Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
<script defer>
console.log("\n")
console.log(
"%c _____ %c _ %c %c _ %c %c ___ \n" +
"%c / ____|%c| | %c %c| | %c %c|__ \\ \n" +
"%c| | %c| |__ %c __ _ %c| |_ %c__ __ %c) |\n" +
"%c| | %c| '_ \\ %c / _` |%c| __| %c\\ \\ / /%c/ / \n" +
"%c| |____ %c| | | |%c| (_| |%c| |_ %c \\ V /%c/ /_ \n" +
"%c \\_____|%c|_| |_|%c \\__,_|%c \\__| %c \\_/%c|____|",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
"color: red", "color: orange", "color: yellow", "color: lime", "color: aqua", "color: magenta",
);
console.log("Thanks for using my chat app! Developed by @jackwellerreal on GitHub.");
console.log("If you have any questions or need help, feel free to open an issue on the GitHub repository.");
console.log("https://github.com/jackwellerreal/chat");
console.log("If you like the project, consider giving it a star on GitHub! ⭐\n");
console.log("\n")
console.info("Errors and logs will begin below this message:")
</script>
</body>
</html>