From ed474412bcea856fa79446afd07602971dfb65d2 Mon Sep 17 00:00:00 2001 From: jaaaaavier Date: Fri, 6 Mar 2026 11:15:32 +0100 Subject: [PATCH 1/2] Update index.ts --- src/lib/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types/index.ts b/src/lib/types/index.ts index f9252b548..63b9bba16 100644 --- a/src/lib/types/index.ts +++ b/src/lib/types/index.ts @@ -94,7 +94,7 @@ export enum PromoCodeName { euro2024fiveTB = '75OFF5TB', euro2024TenTB = '75OFF10TB', freeUserCoupon = 'SPECIAL75', - PcmagCoupon = 'PCMAG90', + PcmagCoupon = 'PCMAG87', CloudwardsCoupon = 'CLOUDWARDS85', OnePlanCoupon = '5TBplan', AllPlansCoupon = 'SUMMER80', From 9c2ba64328afc813d3840ad1c77e61bcb6d428df Mon Sep 17 00:00:00 2001 From: jaaaaavier Date: Fri, 6 Mar 2026 13:00:31 +0100 Subject: [PATCH 2/2] Update ReviewsSection.tsx --- src/components/home/ReviewsSection.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/components/home/ReviewsSection.tsx b/src/components/home/ReviewsSection.tsx index 54af9dcc4..1e204842d 100644 --- a/src/components/home/ReviewsSection.tsx +++ b/src/components/home/ReviewsSection.tsx @@ -60,20 +60,21 @@ export default function ReviewSection({ const reviews = [ { - logo: '/images/home/NewDesign/pcmag.png', + logo: '/images/home/NewDesign/trustpilot.webp', alt: 'pcMag Logo', text: textContent.pcMag, + }, + { + logo: darkMode ? '/images/home/NewDesign/pcworld-new.webp' : '/images/home/NewDesign/pcworld-new.webp', + alt: 'pcworld Logo', + text: textContent.pcWorld, }, { logo: '/images/home/NewDesign/ForbesIcon.webp', alt: 'Forbes Logo', text: textContent.mashable, }, - { - logo: darkMode ? '/images/home/NewDesign/pcworld-dark.webp' : '/images/home/NewDesign/pcworld.png', - alt: 'pcworld Logo', - text: textContent.pcWorld, - }, + ]; const maxIndex = reviews.length - 1;