edut text

This commit is contained in:
2024-10-10 17:06:29 +02:00
parent 4ebebd103f
commit 746b40794f
16 changed files with 11 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ export default function BentoSection() {
<Subheading as="h3" dark={dark}>
{eyebrow}
</Subheading>
<p className="mt-1 text-2xl/8 font-medium tracking-tight h3-title-new group-data-[dark]:text-white">
<p className="mt-1 text-2xl/8 font-medium tracking-tight text-gradient-new group-data-[dark]:text-white">
{title}
</p>
<p className="mt-2 max-w-[600px] text-sm/6 text-gray-600 group-data-[dark]:text-gray-400">

View File

@@ -92,7 +92,7 @@ export default function Featureshome() {
<div className="relative mt-12 lg:mt-24 lg:grid lg:grid-cols-2 lg:items-center lg:gap-8">
<div className="relative">
<h2 className="text-base font-medium font-mono leading-7 text-cyan-700">Features</h2>
<h2 className="text-base font-medium font-mono leading-7 text-purple-e-e-e-e-e-e-e-e-e-e-e-e-700">Features</h2>
<h3 className="h3-title-new">Collaboration & Creation Tools</h3>
<p className="mt-4 section-text font-display ">
Transform how you and your team work together with our innovative, real-time creative tools.
@@ -102,10 +102,10 @@ export default function Featureshome() {
{transferFeatures.map((item) => (
<div key={item.id} className="relative">
<dt>
<div className="absolute flex h-12 w-12 items-center justify-center rounded-xl bg-cyan-gradient text-white">
<div className="absolute flex h-12 w-12 items-center justify-center rounded-xl bg-purple-gradient text-white">
<item.icon aria-hidden="true" className="h-8 w-8" />
</div>
<p className="ml-16 text-lg font-semibold leading-6 text-cyan-700">{item.name}</p>
<p className="ml-16 text-lg font-semibold leading-6 text-purple-700">{item.name}</p>
</dt>
<dd className="ml-16 mt-2 text-base text-purple-700">{item.description}</dd>
</div>
@@ -176,10 +176,10 @@ export default function Featureshome() {
{communicationFeatures.map((item) => (
<div key={item.id} className="relative">
<dt>
<div className="absolute flex h-12 w-12 items-center justify-center rounded-xl bg-cyan-gradient text-white">
<div className="absolute flex h-12 w-12 items-center justify-center rounded-xl bg-purple-gradient text-white">
<item.icon aria-hidden="true" className="h-8 w-8" />
</div>
<p className="ml-16 text-lg font-semibold leading-6 text-cyan-700">{item.name}</p>
<p className="ml-16 text-lg font-semibold leading-6 text-purple-700">{item.name}</p>
</dt>
<dd className="ml-16 mt-2 text-base text-purple-700">{item.description}</dd>
</div>