File size: 2,883 Bytes
bbc89f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3cab306
 
 
 
 
592b323
 
 
 
 
 
 
 
 
bbc89f6
 
 
 
 
592b323
3cab306
bbc89f6
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ObtuAI Header</title>
    <style>
        :root {
            --background-color: #4337C9;
            --text-color: #ffffff;
            --accent-color: #bb86fc;
            --surface-color:#4337C9;
            --border-radius: 20px;
        }
        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
        }
        header {
            background: var(--surface-color);
            padding: 15px 20px;
            border-bottom-left-radius: var(--border-radius);
            border-bottom-right-radius: var(--border-radius);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            background: rgba(187, 134, 252, 0.1);
            padding: 10px 20px;
            border-radius: var(--border-radius);
        }
        .logo h1 {
            font-size: 2em;
            color: var(--accent-color);
            margin: 0;
        }
        .status {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: var(--border-radius);
        }
        .badge {
            background-color: #4CAF50;
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.8em;
            margin-left: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .built-by {
            text-decoration-color: none;
            color: white !important;
        }
        
        .alpha-badge {
            font-size: 0.4em;
            background-color: #007bff;
            color: #ffffff;
            padding: 2px 5px;
            border-radius: 10px;
            vertical-align: super;
        }
    </style>
</head>
<body>
    <header>
        <div class="header-content">
                <h1>Obtu AI <span class="alpha-badge">Alpha</span></h1>
                <a class="built-by" href="https://joselo.ai">@joselobenitezg</a>
            <div class="status">
                <lord-icon
                    src="https://cdn.lordicon.com/jgjfuggm.json"
                    trigger="loop"
                    state="loop-cycle"
                    colors="primary:#4be1ec,secondary:#4030e8"
                    style="width:50px;height:50px">
                </lord-icon>
                <span class="badge">GPU🔥</span>
            </div>
        </div>
    </header>
</body>
</html>