From 82711bacfa301f362be8dcb60028a91dc8aa6d7b Mon Sep 17 00:00:00 2001 From: Kelechi Date: Tue, 30 Jun 2026 11:05:27 +0100 Subject: [PATCH 1/4] fix: update IQ AI links from iqai.app to iqai.com The iqai.app domain returns a 404; point all IQ AI ecosystem links (nav, footer, and the Explore IQ AI button) to iqai.com. --- src/components/layouts/Footer.tsx | 2 +- src/components/layouts/ecosystem/iqai.tsx | 2 +- src/data/Nav.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/layouts/Footer.tsx b/src/components/layouts/Footer.tsx index aed9106..3646d1b 100644 --- a/src/components/layouts/Footer.tsx +++ b/src/components/layouts/Footer.tsx @@ -3,7 +3,7 @@ import React from "react"; import ScrollToTopButton from "./scroll-to-top"; const products = [ - { name: "IQ AI", href: "https://iqai.app/" }, + { name: "IQ AI", href: "https://iqai.com/" }, { name: "IQ.wiki", href: "https://iq.wiki/" }, { name: "Sophia", href: "https://sophia.iqai.com/" }, { name: "AIDEN", href: "https://aiden.id/" }, diff --git a/src/components/layouts/ecosystem/iqai.tsx b/src/components/layouts/ecosystem/iqai.tsx index 4c0ee48..c19ac1f 100644 --- a/src/components/layouts/ecosystem/iqai.tsx +++ b/src/components/layouts/ecosystem/iqai.tsx @@ -12,7 +12,7 @@ export default async function IQAI() {
diff --git a/src/data/Nav.ts b/src/data/Nav.ts index 13203c9..ac09767 100644 --- a/src/data/Nav.ts +++ b/src/data/Nav.ts @@ -39,7 +39,7 @@ export const navLinks = [ export const appLinks = [ { title: "IQ AI", - href: "https://iqai.app", + href: "https://iqai.com", }, { title: "IQ.wiki", @@ -62,7 +62,7 @@ export const appLinks = [ export const mobileNavLinks = [ { title: "IQ AI", - href: "https://iqai.app/", + href: "https://iqai.com/", }, { title: "IQ.wiki", From e7dac58d7d43d3d1d04413f968314f115ed87a2d Mon Sep 17 00:00:00 2001 From: Kelechi Date: Tue, 30 Jun 2026 11:05:35 +0100 Subject: [PATCH 2/4] chore: remove deprecated husky lines from post-merge hook The husky.sh shebang/source lines are deprecated and will fail in husky v10. --- .husky/post-merge | 2 -- 1 file changed, 2 deletions(-) diff --git a/.husky/post-merge b/.husky/post-merge index 9bc1399..4fa3b5d 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -1,5 +1,3 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/common.sh" npx post-merge-install "pnpm install" \ No newline at end of file From 9578c2e37509f9d3cf061ed049d625f223111f86 Mon Sep 17 00:00:00 2001 From: Kelechi Date: Tue, 30 Jun 2026 11:49:00 +0100 Subject: [PATCH 3/4] fix: restore shebang in post-merge hook Git executes hooks directly, so the #!/bin/sh shebang is required for the OS to identify the interpreter. Only the deprecated husky.sh source line should be removed for v10 compatibility. --- .husky/post-merge | 1 + 1 file changed, 1 insertion(+) diff --git a/.husky/post-merge b/.husky/post-merge index 4fa3b5d..74ee089 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -1,3 +1,4 @@ +#!/bin/sh . "$(dirname "$0")/common.sh" npx post-merge-install "pnpm install" \ No newline at end of file From 87c5d9ef25c993675c6d4a0ab9bf81a040b66e32 Mon Sep 17 00:00:00 2001 From: Kelechi Date: Tue, 30 Jun 2026 11:55:27 +0100 Subject: [PATCH 4/4] chore: remove deprecated husky.sh comment from pre-push hook --- .husky/pre-push | 1 - 1 file changed, 1 deletion(-) diff --git a/.husky/pre-push b/.husky/pre-push index f9172ac..5b416b8 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,5 +1,4 @@ #!/bin/sh -# . "$(dirname "$0")/_/husky.sh" // Depreciated in husky v10, TODO: Remove this permanently . "$(dirname "$0")/common.sh" pnpm build