Skip to content
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ recode-website/
├── src/ 🔹Source Code
| └── compenents/
| ├── css/
| └── custom.css
| | └── custom.css
| ├── data/
| ├── database/
| ├── lib/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,13 @@ As a selected ambassador, you will:
<hr className="my-8 border-gray-300" />

<div className="text-center">
<div className="text-center">
<div className="text-center">
<a
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-yellow-200 via-green-200 to-sky-200 hover:from-yellow-300 hover:via-green-300 hover:to-sky-300 text-gray-800 font-semibold px-8 py-3 rounded-lg shadow-md transition-colors"
>
👉 Apply Now
</a>
Expand Down
6 changes: 4 additions & 2 deletions docs/Google-Student-Ambassador/part-3-eligibility/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,17 @@ You’re a good fit if you:
More FAQs and full program details will be shared in the next update. But don’t overthink it — just apply.

<div className="text-center my-6">
<div className="text-center">
<a
href="https://t2m.io/GSA"
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-yellow-200 via-green-200 to-sky-200 hover:from-yellow-300 hover:via-green-300 hover:to-sky-300 text-gray-800 font-semibold px-8 py-3 rounded-lg shadow-md transition-colors"
>
👉 Apply Now
</a>
</div>
</div>

---

Expand Down
5 changes: 3 additions & 2 deletions docs/python/python-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ def = 30 # 'def' is a keyword

Python variables can hold different types of data:

![Python data types diagram](./assets/data-type.png)


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

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

Expand Down Expand Up @@ -237,4 +238,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