Skip to content

Commit 1f6ec1d

Browse files
committed
init
1 parent a38c826 commit 1f6ec1d

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ jobs:
2525
env:
2626
NODE_ENV: production
2727

28+
- name: List build output
29+
run: |
30+
echo "Build output contents:"
31+
ls -la ./dist/
32+
echo "Index.html content (first 20 lines):"
33+
head -20 ./dist/index.html
34+
2835
- name: Deploy to GitHub Pages
2936
uses: peaceiris/actions-gh-pages@v3
3037
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'

index.html

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,28 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>FluxMQ - High-Performance MQTT Broker</title>
7+
8+
<!-- Favicon -->
9+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
10+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
11+
<link rel="icon" type="image/png" sizes="32x32" href="/logo_light.jpg" />
12+
<link rel="icon" type="image/png" sizes="16x16" href="/logo_light.jpg" />
13+
<link rel="apple-touch-icon" sizes="180x180" href="/logo_light.jpg" />
14+
<link rel="manifest" href="/site.webmanifest" />
715
<meta name="description" content="Ultra-fast, scalable MQTT broker designed for modern applications. Handle millions of messages per second with minimal latency and maximum reliability." />
816
<meta name="author" content="FluxMQ" />
917
<meta name="keywords" content="MQTT, message broker, message queue, IoT, real-time messaging, scalable, high-performance" />
1018

1119
<meta property="og:title" content="FluxMQ - High-Performance MQTT Broker" />
1220
<meta property="og:description" content="Ultra-fast, scalable MQTT broker designed for modern applications. Handle millions of messages per second with minimal latency." />
1321
<meta property="og:type" content="website" />
14-
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
22+
<meta property="og:image" content="/logo_light.jpg" />
23+
<meta property="og:image:width" content="1200" />
24+
<meta property="og:image:height" content="630" />
1525

1626
<meta name="twitter:card" content="summary_large_image" />
17-
<meta name="twitter:site" content="@lovable_dev" />
18-
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
27+
<meta name="twitter:site" content="@fluxmq" />
28+
<meta name="twitter:image" content="/logo_light.jpg" />
1929
</head>
2030

2131
<body>

0 commit comments

Comments
 (0)