fixes for site

This commit is contained in:
Desktop
2025-11-13 18:42:53 +05:00
parent 86f6886a13
commit a9e8d6fe2d
4 changed files with 59 additions and 37 deletions

View File

@@ -49,16 +49,16 @@ const Tour: React.FC = () => {
{tourSteps.map((step, index) => (
<div
key={step.title}
className={`grid grid-cols-1 lg:grid-cols-2 gap-12 items-center ${index % 2 === 1 ? "lg:flex-row-reverse" : ""}`}
className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"
>
<div className="space-y-4">
<div className={`space-y-4 ${index % 2 === 1 ? "lg:order-2" : ""}`}>
<span className="text-xs uppercase tracking-[0.3em] text-white/50">
Step {index + 1}
</span>
<h3 className="text-2xl font-semibold">{step.title}</h3>
<p className="text-sm text-white/70 leading-relaxed">{step.description}</p>
</div>
<div className="rounded-3xl border border-white/10 bg-white/5 overflow-hidden">
<div className={`rounded-3xl border border-white/10 bg-white/5 overflow-hidden ${index % 2 === 1 ? "lg:order-1" : ""}`}>
<img
src={`/marketing/images/${step.image}`}
alt={step.title}