fix: modify text

This commit is contained in:
nate 2026-04-10 04:13:23 +04:00
parent bfffb4a719
commit 161316bd6a
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
<a href="/dashboard/home" class="text-xl font-bold tracking-tight group">Ping<span class="text-blue-400 transition-all group-hover:drop-shadow-[0_0_8px_rgba(59,130,246,0.4)]">QL</span></a> <a href="/dashboard/home" class="text-xl font-bold tracking-tight group">Ping<span class="text-blue-400 transition-all group-hover:drop-shadow-[0_0_8px_rgba(59,130,246,0.4)]">QL</span></a>
<div class="flex items-center gap-5 text-sm text-gray-500"> <div class="flex items-center gap-5 text-sm text-gray-500">
<a href="/dashboard/home" class="<%= it.nav === 'monitors' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Monitors</a> <a href="/dashboard/home" class="<%= it.nav === 'monitors' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Monitors</a>
<a href="/dashboard/status-pages" class="<%= it.nav === 'status-pages' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Status pages</a> <a href="/dashboard/status-pages" class="<%= it.nav === 'status-pages' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Pages</a>
<a href="/dashboard/incidents" class="<%= it.nav === 'incidents' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Incidents</a> <a href="/dashboard/incidents" class="<%= it.nav === 'incidents' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Incidents</a>
<a href="/dashboard/notifications" class="<%= it.nav === 'notifications' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Notifications</a> <a href="/dashboard/notifications" class="<%= it.nav === 'notifications' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Notifications</a>
<a href="/dashboard/settings" class="<%= it.nav === 'settings' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Settings</a> <a href="/dashboard/settings" class="<%= it.nav === 'settings' ? 'text-gray-200 relative after:absolute after:bottom-[-18px] after:left-0 after:right-0 after:h-[2px] after:bg-blue-500 after:rounded-full' : 'hover:text-gray-300' %> transition-colors">Settings</a>

View File

@ -41,7 +41,7 @@ deploy_api() {
echo "[api] Deploying to api-eu-central..." echo "[api] Deploying to api-eu-central..."
$SSH $API_HOST bash << 'REMOTE' $SSH $API_HOST bash << 'REMOTE'
cd /opt/pingql cd /opt/pingql
git pull git fetch origin && git reset --hard origin/main
cd apps/api cd apps/api
/root/.bun/bin/bun install /root/.bun/bin/bun install
systemctl restart pingql-api systemctl restart pingql-api
@ -54,7 +54,7 @@ deploy_pay() {
echo "[pay] Deploying to api-eu-central..." echo "[pay] Deploying to api-eu-central..."
$SSH $API_HOST bash << 'REMOTE' $SSH $API_HOST bash << 'REMOTE'
cd /opt/pingql cd /opt/pingql
git pull git fetch origin && git reset --hard origin/main
cd apps/pay cd apps/pay
/root/.bun/bin/bun install /root/.bun/bin/bun install
systemctl restart pingql-pay systemctl restart pingql-pay
@ -68,7 +68,7 @@ deploy_web() {
$SSH $WEB_HOST bash << 'REMOTE' $SSH $WEB_HOST bash << 'REMOTE'
cd /opt/pingql cd /opt/pingql
git checkout -- apps/web/src/dashboard/tailwind.css git checkout -- apps/web/src/dashboard/tailwind.css
git pull git fetch origin && git reset --hard origin/main
cd apps/web cd apps/web
/root/.bun/bin/bun install /root/.bun/bin/bun install
/root/.bun/bin/bun run css /root/.bun/bin/bun run css
@ -84,7 +84,7 @@ deploy_status() {
echo "[status] Deploying to web-eu-central (co-located)..." echo "[status] Deploying to web-eu-central (co-located)..."
$SSH $WEB_HOST bash << 'REMOTE' $SSH $WEB_HOST bash << 'REMOTE'
cd /opt/pingql cd /opt/pingql
git pull git fetch origin && git reset --hard origin/main
cd apps/status cd apps/status
/root/.bun/bin/bun install /root/.bun/bin/bun install
systemctl restart pingql-status systemctl restart pingql-status
@ -100,7 +100,7 @@ deploy_monitor() {
echo "[monitor] Starting deploy on $host..." echo "[monitor] Starting deploy on $host..."
$SSH $host bash << 'REMOTE' $SSH $host bash << 'REMOTE'
cd /opt/pingql cd /opt/pingql
git pull git fetch origin && git reset --hard origin/main
cd apps/monitor cd apps/monitor
/root/.cargo/bin/cargo build --release /root/.cargo/bin/cargo build --release
systemctl restart pingql-monitor systemctl restart pingql-monitor