home
Browse files
github_workflow_app/index.html
CHANGED
|
@@ -372,7 +372,13 @@
|
|
| 372 |
<div class="container">
|
| 373 |
<div class="header">
|
| 374 |
<h1>π GitHub Workflow Runner</h1>
|
| 375 |
-
<div
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 376 |
</div>
|
| 377 |
|
| 378 |
<!-- Auth Card (Hidden if authed) -->
|
|
|
|
| 372 |
<div class="container">
|
| 373 |
<div class="header">
|
| 374 |
<h1>π GitHub Workflow Runner</h1>
|
| 375 |
+
<div style="display: flex; gap: 10px; align-items: center;">
|
| 376 |
+
<a href="/" class="btn"
|
| 377 |
+
style="width: auto; padding: 6px 12px; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 6px;">
|
| 378 |
+
<span>π </span> Home
|
| 379 |
+
</a>
|
| 380 |
+
<div id="authStatus" class="status-badge">Checking Auth...</div>
|
| 381 |
+
</div>
|
| 382 |
</div>
|
| 383 |
|
| 384 |
<!-- Auth Card (Hidden if authed) -->
|
package-lock.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "Elvoro",
|
| 3 |
+
"lockfileVersion": 3,
|
| 4 |
+
"requires": true,
|
| 5 |
+
"packages": {}
|
| 6 |
+
}
|
social_media_publishers/frontend/src/App.jsx
CHANGED
|
@@ -19,6 +19,9 @@ function App() {
|
|
| 19 |
Social Publisher
|
| 20 |
</Link>
|
| 21 |
</div>
|
|
|
|
|
|
|
|
|
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
</nav>
|
|
|
|
| 19 |
Social Publisher
|
| 20 |
</Link>
|
| 21 |
</div>
|
| 22 |
+
<a href="/" className="px-4 py-2 rounded-lg bg-surface hover:bg-opacity-80 transition-colors flex items-center gap-2 text-sm font-medium">
|
| 23 |
+
<span>π </span> Home
|
| 24 |
+
</a>
|
| 25 |
</div>
|
| 26 |
</div>
|
| 27 |
</nav>
|