File size: 3,841 Bytes
651d019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{{.Title}}</title>
    <link
    rel="stylesheet"
    href="/static/assets/highlightjs.css"
  />
  <script defer src="/static/assets/highlightjs.js"></script>
    <script
    defer
    src="/static/assets/alpine.js"
  ></script>
  <script
    defer
    src="/static/assets/marked.js"
  ></script>
  <script
    defer
    src="/static/assets/purify.js"
  ></script>

  <link href="/static/general.css" rel="stylesheet" />
    <link href="/static/assets/font1.css" rel="stylesheet">
    <link
    href="/static/assets/font2.css"
    rel="stylesheet" />
  <link
    rel="stylesheet"
    href="/static/assets/tw-elements.css" />
  <script src="/static/assets/tailwindcss.js"></script>
  <script>
    tailwind.config = {
      darkMode: "class",
      theme: {
        fontFamily: {
          sans: ["Roboto", "sans-serif"],
          body: ["Roboto", "sans-serif"],
          mono: ["ui-monospace", "monospace"],
        },
      },
      corePlugins: {
        preflight: false,
      },
    };
    function copyClipboard(token) {
      navigator.clipboard.writeText(token)
      .then(() => {
          console.log('Text copied to clipboard:', token);
          alert('Text copied to clipboard!');
      })
      .catch(err => {
          console.error('Failed to copy token:', err);
      });
    }
  </script>
  <link href="/static/assets/fontawesome/css/fontawesome.css" rel="stylesheet" />
  <link href="/static/assets/fontawesome/css/brands.css" rel="stylesheet" />
  <link href="/static/assets/fontawesome/css/solid.css" rel="stylesheet" />
  <script src="/static/assets/htmx.js" crossorigin="anonymous"></script>
  <!-- P2P Animation START -->
  <style>
    .animation-container {
        position: relative;
        width: 100%;
        height: 25vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

    .text-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 1;
    }
  </style>
  <!-- P2P Animation END -->
  <!-- Flask and node animation -->
  <style>
            .fa-circle-nodes {
           /* font-size: 100px; /* Adjust the size as needed */
            animation: rotateCircleNodes 8s linear infinite; /* Slow and fluid rotation */
            display: inline-block;
        }

        @keyframes rotateCircleNodes {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* Animation for the warning box */
        .fa-flask {
         /*  font-size: 100px; /* Adjust the size as needed */
            animation: shakeFlask 3s ease-in-out infinite; /* Smooth easing and longer duration for fluidity */
            transform-origin: bottom center;
        }

        @keyframes shakeFlask {
            0%, 10% { transform: rotate(0deg); } /* Start and end still */
            20% { transform: rotate(-10deg); } /* Smooth transition to left */
            30% { transform: rotate(10deg); } /* Smooth transition to right */
            40% { transform: rotate(-8deg); } /* Smooth transition to left */
            50% { transform: rotate(8deg); } /* Smooth transition to right */
            60% { transform: rotate(-5deg); } /* Smooth transition to left */
            70% { transform: rotate(5deg); } /* Smooth transition to right */
            80% { transform: rotate(-2deg); } /* Smooth transition to left */
            90% { transform: rotate(2deg); } /* Smooth transition to right */
            100% { transform: rotate(0deg); } /* Return to center */
        }
  </style>
</head>