Compare commits

...

3 Commits

Author SHA1 Message Date
a1bd907fa1 update-20260401-164823-14256 2026-04-01 16:48:23 +02:00
fc6b921ffd update-20260401-164046-18676 2026-04-01 16:40:46 +02:00
deda1260ea update-20260401-163742-19979 2026-04-01 16:37:42 +02:00
2 changed files with 24 additions and 1 deletions

View File

@@ -821,7 +821,7 @@
<svg class="w-4 h-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
</div>
<span class="text-sm font-semibold text-gray-300">CartPulse AI</span>
<span class="text-xs text-gray-600">by Earlybirds.me</span>
<span class="text-xs text-gray-600">By Earlybirds.me</span>
</div>
<nav class="flex flex-wrap items-center justify-center gap-x-5 gap-y-2 text-xs font-medium">
<a href="https://acg.earlybirds.me/" class="hover:text-white transition-colors">Demo</a>

23
push.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/env bash
set -e
BRANCH="main"
if [ -z "$(git status --porcelain)" ]; then
echo "No changes to commit."
exit 0
fi
MSG="update-$(date +%Y%m%d-%H%M%S)-$RANDOM"
echo "Using commit message: $MSG"
echo "==> git add"
git add .
echo "==> git commit"
git commit -m "$MSG"
echo "==> git push"
git push origin "$BRANCH"
echo "Done."