Skip to content

[Fix][Docs]: Improved button and added image alt #266

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Become a **Google Student Ambassador** and introduce *Gemini AI* to your college
href="https://event.recodehive.com/gemini"
target="_blank"
rel="noopener"
className="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
className="inline-block bg-gradient-to-r from-green-300 to-blue-500 hover:from-green-400 hover:to-blue-600 text-black font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
>

</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ As a selected ambassador, you will:
href="https://event.recodehive.com/gemini"
target="_blank"
rel="noopener"
className="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
className="inline-block bg-gradient-to-r from-green-300 to-blue-500 hover:from-green-400 hover:to-blue-600 text-black font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
>
👉 Apply Now
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ More FAQs and full program details will be shared in the next update. But don’
href="https://t2m.io/GSA"
target="_blank"
rel="noopener"
className="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
className="inline-block bg-gradient-to-r from-green-300 to-blue-500 hover:from-green-400 hover:to-blue-600 text-black font-semibold px-8 py-3 rounded-lg shadow-lg transition-colors"
>
👉 Apply Now
</a>
Expand Down
4 changes: 2 additions & 2 deletions docs/python/python-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def = 30 # 'def' is a keyword
Python variables can hold different types of data:


<img src="./assets/data-type.png"/>
<img src="./assets/data-type.png" alt="data-type table" />

### 6. Type Checking with `type()`

Expand Down Expand Up @@ -237,4 +237,4 @@ Items: ['pen', 'notebook']
* Covers both global and local variables
* Explains `del`, `global`, and `id()` functions
* Includes formatted tables and output blocks
* Beginner-friendly explanation with examples
* Beginner-friendly explanation with examples
Loading