changed adv items

This commit is contained in:
AmirReza Jamali
2025-10-28 17:10:13 +03:30
parent 645b397396
commit a93186a87f
+15 -18
View File
@@ -23,22 +23,22 @@ export const metadata: Metadata = {
export default function Home() { export default function Home() {
const advItems = [ const advItems = [
{ {
title: "user", title: "EU Public market.",
amount: 200, amount: "€2 Trillion",
description: 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", title: "The Missing Share.",
amount: 520, amount: "85%",
description: 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", title: "Relevant Tenders.",
amount: 1500, amount: "+1500",
description: 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 ( return (
@@ -89,19 +89,16 @@ export default function Home() {
/> />
</div> </div>
</section> </section>
<section className="flex flex-col gap-6 bg-gradient-to-b from-[#011132] to-[#012B80] text-white rounded-[56px] relative py-16 px-14 -mt-36 z-20 md:grid md:grid-cols-3 lg:flex-row"> <section className="flex flex-col gap-6 bg-gradient-to-b from-[#011132] to-[#012B80] text-white rounded-[56px] relative py-13 px-14 -mt-36 z-20 md:grid lg:flex-row">
{advItems.map((item) => ( {advItems.map((item) => (
<article <article
key={item.title} key={item.title}
className="flex flex-col gap-4 text-center items-center"> className="flex flex-col gap-4 text-center items-center">
<div className="flex flex-col items-center gap-2 lg:items-end lg:flex-row"> <p className="font-black text-[90px] lg:text-7xl">{item.amount}</p>
<p className="font-black text-[90px] lg:text-7xl"> <h3 className="font-semibold lg:text-xl text-3xl capitalize text-[#99dde5]">
{item.amount} {item.title}
</p> </h3>
<h3 className="font-semibold lg:text-xl text-3xl capitalize text-[#99dde5]">
{item.title}
</h3>
</div>
<p className="font-normal text-[16px]">{item.description}</p> <p className="font-normal text-[16px]">{item.description}</p>
</article> </article>
))} ))}