From 9f16f893388a243e2ea530aaa6335f603b91d0e2 Mon Sep 17 00:00:00 2001 From: AmirReza Jamali Date: Tue, 18 Nov 2025 17:27:42 +0330 Subject: [PATCH] feat: Update amount display for EU Public market and conditionally show 'Trillion' --- app/(home)/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/(home)/page.tsx b/app/(home)/page.tsx index b4c6da2..ee7e5bd 100644 --- a/app/(home)/page.tsx +++ b/app/(home)/page.tsx @@ -24,7 +24,7 @@ export default function Home() { const advItems = [ { title: "EU Public market.", - amount: "€2 Trillion", + amount: "€2", description: "The colossal market that only 15% of the value reaches SMEs. It's time to compete.", }, @@ -90,11 +90,14 @@ export default function Home() {
- {advItems.map((item) => ( + {advItems.map((item, index) => (
-

{item.amount}

+

+ {item.amount} + {index === 0 && Trillion} +

{item.title}