From 15c9aac0cec25a534e938226c0a799d6a536e87f Mon Sep 17 00:00:00 2001 From: Rishav Anand Date: Wed, 18 Dec 2024 00:35:05 +0530 Subject: [PATCH 1/2] Add Netlify configuration file with Python version set to 3.9 --- netlify.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..9a38689 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,2 @@ +[build.environment] +PYTHON_VERSION = "3.9" \ No newline at end of file From f72530db3089d9325e43efc72f7b3716f64b7f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=20G=C3=B3mez?= Date: Tue, 8 Apr 2025 02:36:38 +0100 Subject: [PATCH 2/2] BugFix - Update YouTube URL Format to @username Style (#153) * Add Netlify configuration file with Python version set to 3.9 (#152) * Update YouTube link format in social configuration --------- Co-authored-by: Rishav Anand --- src/config/social.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/social.ts b/src/config/social.ts index f42a1b8..6597574 100644 --- a/src/config/social.ts +++ b/src/config/social.ts @@ -106,6 +106,6 @@ export const SOCIAL_SITES: { shieldBadge: 'https://img.shields.io/badge/youtube-%23EE4831.svg?&style=for-the-badge&logo=youtube&logoColor=white', title: 'YouTube', - href: (username: string) => `https://www.youtube.com/user/${username}`, + href: (username: string) => `https://www.youtube.com/@${username}`, }, };