feat: setup le project structure

This commit is contained in:
TheClashFruit 2023-08-24 12:58:44 +02:00
parent d8c607d800
commit a26a70bcbb
Signed by: TheClashFruit
GPG key ID: CF4A319B9A73290C
7 changed files with 27 additions and 5 deletions

6
css/style.css Normal file
View file

@ -0,0 +1,6 @@
* {
padding: 0;
margin: 0;
}
/*# sourceMappingURL=style.css.map */

1
css/style.css.map Normal file
View file

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["style.scss"],"names":[],"mappings":"AAAA;EACE;EACA","file":"style.css"}

4
css/style.scss Normal file
View file

@ -0,0 +1,4 @@
* {
padding: 0;
margin: 0;
}

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

BIN
img/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,7 +1,18 @@
<h1>Coming Soon...</h1>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<p>
Check the rules and other stuff about the server on <a href="https://git.theclashfruit.me/CRSS/CRSS">https://git.theclashfruit.me/CRSS/CRSS</a> till then.
</p>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<iframe src="https://435a-2804-45c8-823f-8700-186a-ee95-59ed-9998.ngrok-free.app/" width="600" height="600"></iframe>
<title>CRSS</title>
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<h1>CRSS</h1>
<script src="/js/main.js"></script>
</body>
</html>

0
js/main.js Normal file
View file