This commit is contained in:
rosetta
2026-01-30 05:01:05 +02:00
commit 83f38dc63f
327 changed files with 18725 additions and 0 deletions

BIN
resources/.DS_Store vendored Normal file

Binary file not shown.

BIN
resources/R.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

47
resources/preload.html Normal file
View File

@@ -0,0 +1,47 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rosetta</title>
<style>
.pulse {
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.15);
}
100% {
transform: scale(1);
}
}
</style>
<style>
*{
padding: 0px;
margin: 0px;
text-align: center;
text-decoration: none;
list-style: none;
box-sizing: border-box;
user-select: none;
-webkit-user-select: none;
-webkit-app-region: no-drag;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: transparent;
width: 100%;
}
</style>
</head>
<body>
<img src="R.png" width="100" height="100" class="pulse">
</body>
</html>

12
resources/prod.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Rosetta Messenger</title>
<!--RR-->
</head>
<body>
<div id="app"></div>
<script type="module" src="/renderer.tsx"></script>
</body>
</html>