changed adv items
This commit is contained in:
+15
-18
@@ -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() {
|
||||
/>
|
||||
</div>
|
||||
</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) => (
|
||||
<article
|
||||
key={item.title}
|
||||
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>
|
||||
<h3 className="font-semibold lg:text-xl text-3xl capitalize text-[#99dde5]">
|
||||
{item.title}
|
||||
</h3>
|
||||
</div>
|
||||
<p className="font-black text-[90px] lg:text-7xl">{item.amount}</p>
|
||||
<h3 className="font-semibold lg:text-xl text-3xl capitalize text-[#99dde5]">
|
||||
{item.title}
|
||||
</h3>
|
||||
|
||||
<p className="font-normal text-[16px]">{item.description}</p>
|
||||
</article>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user