Skip to content

Commit 6567bd1

Browse files
committed
Add Google AdSense script to web/index.html
1 parent ea3a629 commit 6567bd1

2 files changed

Lines changed: 43 additions & 0 deletions

File tree

web/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
1010
<meta name="mobile-web-app-capable" content="yes">
1111
<title>SpendWise - Smart Money Manager</title>
12+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1036425674935133"
13+
crossorigin="anonymous"></script>
1214
<link rel="manifest" href="/manifest.json">
1315
<link rel="apple-touch-icon" href="/logo.png">
1416
<link rel="icon" type="image/png" href="/logo.png">

web/push-changes.bat

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
@echo off
2+
echo ========================================
3+
echo Pushing AI Chatbot Fix to GitHub
4+
echo ========================================
5+
echo.
6+
7+
cd /d "%~dp0"
8+
9+
echo Current status:
10+
git status
11+
echo.
12+
13+
echo Attempting to push...
14+
git push origin main
15+
16+
if %ERRORLEVEL% EQU 0 (
17+
echo.
18+
echo ========================================
19+
echo SUCCESS! Changes pushed to GitHub
20+
echo ========================================
21+
echo.
22+
echo Next steps:
23+
echo 1. Go to https://vercel.com/dashboard
24+
echo 2. Wait for deployment to complete (2-3 minutes)
25+
echo 3. Hard refresh your browser: Ctrl + Shift + R
26+
echo.
27+
) else (
28+
echo.
29+
echo ========================================
30+
echo PUSH FAILED - Authentication Required
31+
echo ========================================
32+
echo.
33+
echo Please authenticate with GitHub:
34+
echo 1. Username: lekhanpro
35+
echo 2. Password: Use your GitHub Personal Access Token
36+
echo.
37+
echo Get token from: https://github.com/settings/tokens
38+
echo.
39+
)
40+
41+
pause

0 commit comments

Comments
 (0)