From a93186a87faadb48ac5c3a4cf2ce126c3bf2528c Mon Sep 17 00:00:00 2001 From: AmirReza Jamali Date: Tue, 28 Oct 2025 17:10:13 +0330 Subject: [PATCH] changed adv items --- app/(home)/page.tsx | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/app/(home)/page.tsx b/app/(home)/page.tsx index 23529a8..85eb681 100644 --- a/app/(home)/page.tsx +++ b/app/(home)/page.tsx @@ -23,22 +23,22 @@ export const metadata: Metadata = { export default function Home() { const advItems = [ { - title: "user", - amount: 200, + title: "EU Public market.", + amount: "€2 Trillion", description: - "lacking the time, dedicated staff, and expertise to constantly monitor the market and prepare high-quality bids.", + "The colossal market that only 15% of the value reaches SMEs. It's time to compete.", }, { - title: "contract", - amount: 520, + title: "The Missing Share.", + amount: "85%", description: - "Navigating complex requirements and processes designed for large corporations with dedicated tender departments.", + "This contract value is currently monopolized by large firms. It's the revenue you are losing.", }, { - title: "tenders", - amount: 1500, + title: "Relevant Tenders.", + amount: "+1500", description: - "Did you know 68% of SMEs in Sweden rarely or never win public tenders? It's time to change that.", + "Massive of daily opportunities OppLens AI analyzes and matches to your business.", }, ]; return ( @@ -89,19 +89,16 @@ export default function Home() { /> -
+
{advItems.map((item) => (
-
-

- {item.amount} -

-

- {item.title} -

-
+

{item.amount}

+

+ {item.title} +

+

{item.description}

))}