File size: 8,318 Bytes
d28e16a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ProVerBs Logo Preview - Rotating Logos Demo</title>
    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        

        body {

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);

            min-height: 100vh;

            display: flex;

            flex-direction: column;

            justify-content: center;

            align-items: center;

            color: white;

        }

        

        .container {

            max-width: 1200px;

            padding: 40px;

            text-align: center;

        }

        

        .header-section {

            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

            border-radius: 12px;

            padding: 40px 20px;

            margin-bottom: 30px;

            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);

        }

        

        .logo-container {

            margin-bottom: 20px;

            display: flex;

            justify-content: center;

            align-items: center;

            position: relative;

            height: 150px;

        }

        

        .rotating-logo {

            width: 150px;

            height: 150px;

            border-radius: 50%;

            object-fit: cover;

            border: 4px solid rgba(255, 255, 255, 0.8);

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

            position: absolute;

            transition: opacity 1s ease-in-out;

        }

        

        h1 {

            font-size: 3rem;

            margin-bottom: 10px;

            font-weight: 700;

            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

        }

        

        .subtitle {

            font-size: 1.3rem;

            margin-bottom: 20px;

        }

        

        .brain-badge {

            display: inline-block;

            background: #ff6b6b;

            color: white;

            padding: 8px 16px;

            border-radius: 20px;

            font-weight: bold;

            margin: 10px 5px;

            font-size: 0.9rem;

        }

        

        .info-section {

            background: rgba(255, 255, 255, 0.1);

            border-radius: 12px;

            padding: 30px;

            margin-top: 30px;

            backdrop-filter: blur(10px);

        }

        

        .status-indicator {

            font-size: 1.2rem;

            margin: 20px 0;

            padding: 15px;

            background: rgba(76, 175, 80, 0.2);

            border: 2px solid #4CAF50;

            border-radius: 8px;

        }

        

        .rotation-timer {

            font-size: 1.5rem;

            margin: 20px 0;

            font-weight: bold;

            color: #ffeb3b;

        }

        

        .feature-list {

            text-align: left;

            display: inline-block;

            margin: 20px auto;

        }

        

        .feature-list li {

            margin: 10px 0;

            font-size: 1.1rem;

        }

        

        .btn {

            display: inline-block;

            padding: 15px 30px;

            background: #4CAF50;

            color: white;

            text-decoration: none;

            border-radius: 8px;

            font-size: 1.1rem;

            font-weight: bold;

            margin: 10px;

            transition: all 0.3s;

        }

        

        .btn:hover {

            background: #45a049;

            transform: translateY(-2px);

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

        }

        

        .note {

            font-size: 0.9rem;

            opacity: 0.9;

            margin-top: 20px;

        }

    </style>
</head>
<body>
    <div class="container">
        <div class="header-section">
            <div class="logo-container">
                <img src="assets/logo_1.jpg" class="rotating-logo" id="logo1" alt="ProVerBs Logo 1" style="opacity: 1;">
                <img src="assets/logo_2.jpg" class="rotating-logo" id="logo2" alt="ProVerBs Logo 2" style="opacity: 0;">
                <img src="assets/logo_3.jpg" class="rotating-logo" id="logo3" alt="ProVerBs Logo 3" style="opacity: 0;">
            </div>
            <h1>⚖️ ProVerBs Ultimate Legal AI Brain</h1>
            <p class="subtitle">Powered by Pro'VerBs™ & ADAPPT-I™ Technology</p>
            <div>
                <span class="brain-badge">🧠 100+ Reasoning Protocols</span>
                <span class="brain-badge">🤖 6 AI Models</span>
                <span class="brain-badge">⚖️ 7 Legal Modes</span>
                <span class="brain-badge">🎙️ Voice Cloning</span>
            </div>
            <p class="note">
                Chain-of-Thought • Self-Consistency • Tree-of-Thoughts • ReAct • Reflexion • RAG<br>
                Quantum Reasoning • Multi-Agent • Voice Cloning • Audio Processing
            </p>
        </div>
        
        <div class="info-section">
            <div class="status-indicator"><strong>Logos Successfully Integrated!</strong>
            </div>
            
            <div class="rotation-timer">
                Next logo change in: <span id="timer">60</span> seconds
            </div>
            
            <h2>🎨 Logo Rotation Features</h2>
            <ul class="feature-list">
                <li>✅ 3 Professional logos rotating every 60 seconds</li>
                <li>✅ Smooth fade transitions (1 second duration)</li>
                <li>✅ Circular design with elegant white border</li>
                <li>✅ Professional shadow effects</li>
                <li>✅ Fully responsive design</li>
                <li>✅ Works on all modern browsers</li>
            </ul>
            
            <h3 style="margin-top: 30px;">📁 Logo Files Installed</h3>
            <p style="margin: 15px 0;">
                <strong>Location:</strong> ProVerbS_LaW_mAiN_PAgE/assets/<br>
                • logo_1.jpg (65.20 KB)<br>
                • logo_2.jpg (128.21 KB)<br>
                • logo_3.jpg (231.14 KB)<br>
                • logo_eagle.svg (3.54 KB)
            </p>
            
            <div style="margin-top: 30px;">
                <a href="#" class="btn" onclick="alert('Run: python app.py'); return false;">🚀 Start Main App</a>
                <a href="#" class="btn" onclick="alert('Run: python integrated_chatbot_with_logos.py'); return false;">🎨 Start Logo Version</a>
            </div>
            
            <p style="margin-top: 30px; font-size: 0.9rem; opacity: 0.8;">
                📝 This is a preview showing how your logos will appear in the actual Gradio application.<br>
                The logos rotate automatically every 60 seconds with smooth transitions.
            </p>
        </div>
    </div>
    
    <script>

        // Logo rotation script

        (function() {

            const logos = ['logo1', 'logo2', 'logo3'];

            let currentIndex = 0;

            let secondsRemaining = 60;

            

            function rotateLogo() {

                logos.forEach((id, index) => {

                    const logo = document.getElementById(id);

                    if (logo) {

                        logo.style.opacity = index === currentIndex ? '1' : '0';

                    }

                });

                currentIndex = (currentIndex + 1) % logos.length;

                secondsRemaining = 60;

            }

            

            // Update timer display

            function updateTimer() {

                document.getElementById('timer').textContent = secondsRemaining;

                secondsRemaining--;

                

                if (secondsRemaining < 0) {

                    rotateLogo();

                }

            }

            

            // Start rotation and timer

            setInterval(rotateLogo, 60000);

            setInterval(updateTimer, 1000);

        })();

    </script>
</body>
</html>