fixed minor issues

This commit is contained in:
AmirReza Jamali
2025-10-18 22:28:17 +03:30
parent c62154ea4c
commit 8d8fc823aa
+25 -17
View File
@@ -55,17 +55,19 @@ export default function Home() {
<h2 className="capitalize">total tender amount you missed today</h2> <h2 className="capitalize">total tender amount you missed today</h2>
<ApexChart /> <ApexChart />
</div> </div>
<div className="mr-8 -z-10"> <div className="mr-8 -z-20">
<Image <Image
className="-z-10 " className="-z-10 "
src="/mobile.svg" src="/mobile.svg"
width={300} width={300}
height={820} height={820}
loading="lazy"
alt="phone" alt="phone"
/> />
</div> </div>
</section> </section>
<div className="text-left flex flex-col gap-6 bg-gradient-to-b from-[#011132] to-[#012B80] text-white rounded-[56px] p-6 md:p-14 -mt-16 z-10 md:ml-28"> <section className="text-left flex flex-col gap-6 bg-gradient-to-b from-[#011132] to-[#012B80] text-white rounded-[56px] relative p-6 md:p-14 -mt-16 z-20 md:ml-28">
<hgroup>
<h1 className="capitalize font-extrabold text-5xl "> <h1 className="capitalize font-extrabold text-5xl ">
democratizing the world of tenders democratizing the world of tenders
</h1> </h1>
@@ -74,13 +76,15 @@ export default function Home() {
field so you can win the public and private contracts you deserve. field so you can win the public and private contracts you deserve.
Compete on your true strengths. Compete on your true strengths.
</p> </p>
</hgroup>
<div className="flex justify-end"> <div className="flex justify-end">
<button className="bg-(--primary) rounded-4xl py-4 px-6"> <button className="bg-(--primary) rounded-4xl py-4 px-6">
Get early access Get early access
</button> </button>
</div> </div>
</div> </section>
<article className="mt-40"> <article className="mt-40">
<hgroup>
<h4 className="capitalize font-bold text-4xl"> <h4 className="capitalize font-bold text-4xl">
your in-house tender department, powered by your in-house tender department, powered by
<span className="uppercase">ai</span> <span className="uppercase">ai</span>
@@ -89,16 +93,20 @@ export default function Home() {
Opplens is the end-to-end solution that gives you the power to compete Opplens is the end-to-end solution that gives you the power to compete
and win. and win.
</small> </small>
</hgroup>
</article> </article>
<section className="flex flex-col gap-4 md:flex-row"> <section className="flex flex-col gap-4 md:flex-row">
{centerFrames.map((frame, index) => ( {centerFrames.map((frame, index) => (
<CenterFrame <article key={frame.description} className="bg-[#F7FAFF] border border-(--primary)/30 rounded-3xl my-4 py-10 px-6">
key={frame.description} <Image
src={frame.src} src={frame.src}
title={frame.title}
description={frame.description}
alt={frame.alt} alt={frame.alt}
width={36}
height={36}
/> />
<h3 className="text-2xl font-bold">{frame.title}</h3>
<p className="text-gray-600">{frame.description}</p>
</article>
))} ))}
</section> </section>
<section className="mt-36 bg-[#F7FAFF] px-4 py-6 rounded-4xl flex flex-col gap-9 md:p-16"> <section className="mt-36 bg-[#F7FAFF] px-4 py-6 rounded-4xl flex flex-col gap-9 md:p-16">
@@ -111,8 +119,8 @@ export default function Home() {
an uphill battle. an uphill battle.
</p> </p>
</div> </div>
<div className="flex flex-col gap-4 md:flex-row md:justify-between"> <ul className="flex flex-col gap-4 md:flex-row md:justify-between">
<div className="flex flex-col gap-4 md:w-80"> <li className="flex flex-col gap-4 md:w-80">
<div className="p-4"> <div className="p-4">
<Image <Image
src={"/clock.svg"} src={"/clock.svg"}
@@ -126,8 +134,8 @@ export default function Home() {
Lacking the time, dedicated staff, and expertise to constantly Lacking the time, dedicated staff, and expertise to constantly
monitor the market and prepare high-quality bids. monitor the market and prepare high-quality bids.
</p> </p>
</div> </li>
<div className="flex flex-col gap-4 md:w-80"> <li className="flex flex-col gap-4 md:w-80">
<div className="p-4"> <div className="p-4">
<Image <Image
src={"/clipboard.svg"} src={"/clipboard.svg"}
@@ -141,8 +149,8 @@ export default function Home() {
Navigating complex requirements and processes designed for large Navigating complex requirements and processes designed for large
corporations with dedicated tender departments. corporations with dedicated tender departments.
</p> </p>
</div> </li>
<div className="flex flex-col gap-4 md:w-80"> <li className="flex flex-col gap-4 md:w-80">
<div className="p-4"> <div className="p-4">
<Image <Image
src={"/arrow-up.svg"} src={"/arrow-up.svg"}
@@ -156,14 +164,14 @@ export default function Home() {
Did you know 68% of SMEs in Sweden rarely or never win public Did you know 68% of SMEs in Sweden rarely or never win public
tenders? It's time to change that. tenders? It's time to change that.
</p> </p>
</div> </li>
</div> </ul>
</section> </section>
<section className="flex flex-col mt-36 gap-10 w-3/4 m-auto"> <section className="flex flex-col mt-36 gap-10 w-3/4 m-auto">
<div> <div>
<h2 className="font-bold text-4xl">The Opplens Advantage</h2> <h2 className="font-bold text-4xl">The Opplens Advantage</h2>
</div> </div>
<div className="flex flex-col gap-10 md:flex-row"> <section className="flex flex-col gap-10 md:flex-row">
<div className="flex flex-col gap-7 md:flex-row bg-[#FFF7EB] p-10 rounded-3xl md:pb-20"> <div className="flex flex-col gap-7 md:flex-row bg-[#FFF7EB] p-10 rounded-3xl md:pb-20">
<Image <Image
src={"people.svg"} src={"people.svg"}
@@ -196,7 +204,7 @@ export default function Home() {
</p> </p>
</div> </div>
</div> </div>
</div> </section>
</section> </section>
</> </>
); );