From 6c7ea7f782919d8c31e80101b922145d4d087fa2 Mon Sep 17 00:00:00 2001 From: Kelechi Date: Fri, 21 Aug 2026 16:33:49 +0100 Subject: [PATCH] fix: point IQ Industries links at iqindustries.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit iqindustries.ai does not answer on 443 — the domain sits on a parking IP that only serves a redirect over port 80, so both links were dead. --- src/components/layouts/Footer.tsx | 2 +- src/components/layouts/ecosystem.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/layouts/Footer.tsx b/src/components/layouts/Footer.tsx index 1b26204f..e55bb3b1 100644 --- a/src/components/layouts/Footer.tsx +++ b/src/components/layouts/Footer.tsx @@ -23,7 +23,7 @@ const socialLinks: { name: SocialName; label: string; href: string }[] = [ const ecosystemLinks = [ { name: "IQ AI", href: "https://iqai.com/" }, { name: "IQ.wiki", href: "https://iq.wiki/" }, - { name: "IQ Industries", href: "https://iqindustries.ai/" }, + { name: "IQ Industries", href: "https://iqindustries.com/" }, { name: "IQ Blog", href: "https://blog.iqai.com/" }, ]; diff --git a/src/components/layouts/ecosystem.tsx b/src/components/layouts/ecosystem.tsx index b1b6dd22..21812457 100644 --- a/src/components/layouts/ecosystem.tsx +++ b/src/components/layouts/ecosystem.tsx @@ -6,7 +6,7 @@ import { Display, Eyebrow, Section } from "./section-kit"; const PRODUCTS = [ { key: "iqai", href: "https://iqai.com/" }, { key: "wiki", href: "https://iq.wiki/" }, - { key: "industries", href: "https://iqindustries.ai/" }, + { key: "industries", href: "https://iqindustries.com/" }, ] as const; const Ecosystem = async () => {