From acfbad39de386253f887a59f84a787928b6be954 Mon Sep 17 00:00:00 2001 From: Irina Chichikova Date: Sun, 1 Feb 2026 18:29:51 +0200 Subject: [PATCH 1/2] Add Junie agent to the agents list --- components/CompatibilitySection.tsx | 6 ++++++ public/logos/junie.svg | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 public/logos/junie.svg diff --git a/components/CompatibilitySection.tsx b/components/CompatibilitySection.tsx index 4c0742d..cdedc0e 100644 --- a/components/CompatibilitySection.tsx +++ b/components/CompatibilitySection.tsx @@ -12,6 +12,12 @@ type AgentEntry = { }; const agents: AgentEntry[] = [ + { + name: "Junie", + from: "JetBrains", + url: "https://jetbrains.com/junie", + imageSrc: "/logos/junie.svg", + }, { name: "Codex", url: "https://openai.com/codex/", diff --git a/public/logos/junie.svg b/public/logos/junie.svg new file mode 100644 index 0000000..ac4ea38 --- /dev/null +++ b/public/logos/junie.svg @@ -0,0 +1,5 @@ + + + + + From 468d430f81903ce308092d394e8866690077b531 Mon Sep 17 00:00:00 2001 From: Irina Chichikova Date: Tue, 10 Mar 2026 10:09:50 +0200 Subject: [PATCH 2/2] Reorder Junie agent in the agents list --- components/CompatibilitySection.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/CompatibilitySection.tsx b/components/CompatibilitySection.tsx index cdedc0e..68d7b78 100644 --- a/components/CompatibilitySection.tsx +++ b/components/CompatibilitySection.tsx @@ -12,12 +12,6 @@ type AgentEntry = { }; const agents: AgentEntry[] = [ - { - name: "Junie", - from: "JetBrains", - url: "https://jetbrains.com/junie", - imageSrc: "/logos/junie.svg", - }, { name: "Codex", url: "https://openai.com/codex/", @@ -134,6 +128,12 @@ const agents: AgentEntry[] = [ url: "https://uipath.github.io/uipath-python", imageSrc: "/logos/uipath.svg", }, + { + name: "Junie", + from: "JetBrains", + url: "https://jetbrains.com/junie", + imageSrc: "/logos/junie.svg", + }, ]; const shuffleAgents = (items: AgentEntry[]) => {