File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 ">
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments