From 02650a8e19242d0ea39e3823822049f6f9363f3a Mon Sep 17 00:00:00 2001 From: Santiago Chausis Date: Wed, 25 Mar 2026 11:51:10 -0300 Subject: [PATCH 1/3] fix: update Twitter icon to X logo in navbar --- astro.config.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index 20348484..fa3d1375 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -32,11 +32,7 @@ const config = defineConfig({ href: 'https://github.com/freeCodeCamp', icon: 'github' }, - { - label: 'Twitter', - href: 'https://twitter.com/freeCodeCamp', - icon: 'twitter' - }, + { icon: 'x.com', label: 'X', href: 'https://twitter.com/freeCodeCamp' }, { label: 'Discord', href: 'https://chat.freecodecamp.org', From abd92deef3c001445099c571d5575215513afa1f Mon Sep 17 00:00:00 2001 From: santichausis Date: Thu, 9 Apr 2026 23:01:53 -0300 Subject: [PATCH 2/3] Format X link object for consistency --- astro.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index fa3d1375..36a7a7b2 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -32,7 +32,11 @@ const config = defineConfig({ href: 'https://github.com/freeCodeCamp', icon: 'github' }, - { icon: 'x.com', label: 'X', href: 'https://twitter.com/freeCodeCamp' }, + { + label: 'X', + href: 'https://twitter.com/freeCodeCamp', + icon: 'x.com' + }, { label: 'Discord', href: 'https://chat.freecodecamp.org', From 21ff66207514856d25b3e372fc93395ff592d004 Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Wed, 22 Apr 2026 20:23:45 +0700 Subject: [PATCH 3/3] fix: format code --- astro.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index 36a7a7b2..0ef3b563 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -32,9 +32,9 @@ const config = defineConfig({ href: 'https://github.com/freeCodeCamp', icon: 'github' }, - { - label: 'X', - href: 'https://twitter.com/freeCodeCamp', + { + label: 'X', + href: 'https://twitter.com/freeCodeCamp', icon: 'x.com' }, {