Merge version_20_1781526251318 into main #20

Merged
bender merged 1 commits from version_20_1781526251318 into main 2026-06-15 12:24:51 +00:00

View File

@@ -27,6 +27,29 @@ const AboutInline = () => {
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary" animationDelay={0.1} />}
</div>
)}
<ul className="mt-12 space-y-6 text-left max-w-2xl mx-auto">
<li className="flex gap-4">
<div className="flex-shrink-0 w-8 h-8 rounded-full bg-primary/10 text-primary flex items-center justify-center font-bold">1</div>
<div>
<h4 className="text-lg font-semibold text-foreground"> & </h4>
<p className="text-muted-foreground mt-1"> , · , , ·· .</p>
</div>
</li>
<li className="flex gap-4">
<div className="flex-shrink-0 w-8 h-8 rounded-full bg-primary/10 text-primary flex items-center justify-center font-bold">2</div>
<div>
<h4 className="text-lg font-semibold text-foreground"> </h4>
<p className="text-muted-foreground mt-1">·· .</p>
</div>
</li>
<li className="flex gap-4">
<div className="flex-shrink-0 w-8 h-8 rounded-full bg-primary/10 text-primary flex items-center justify-center font-bold">3</div>
<div>
<h4 className="text-lg font-semibold text-foreground"> </h4>
<p className="text-muted-foreground mt-1"> .</p>
</div>
</li>
</ul>
</div>
</section>
);