From 17027f7d9075e52488e2a6087ece0b44004f3371 Mon Sep 17 00:00:00 2001 From: Karanveer Date: Wed, 3 Dec 2025 12:57:57 +0530 Subject: [PATCH] refactor: community links now redirect to new tab --- app/components/CommunityLinks/CommunityLinks.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/components/CommunityLinks/CommunityLinks.tsx b/app/components/CommunityLinks/CommunityLinks.tsx index ed5ce4d..b03d5fa 100644 --- a/app/components/CommunityLinks/CommunityLinks.tsx +++ b/app/components/CommunityLinks/CommunityLinks.tsx @@ -2,7 +2,6 @@ import React from "react"; import { useMemo } from "react"; import { useColorMode } from "@chakra-ui/react"; import styles from "./CommunityLinks.module.css"; -import Link from "next/link"; export default function CompanyLogos() { const linkInfo = useMemo(() => { @@ -24,9 +23,15 @@ export default function CompanyLogos() { return (
{linkInfo.map((info) => ( - + {info.title} - + ))}
);