This commit is contained in:
Desktop
2025-11-14 01:45:26 +05:00
parent e74c048f46
commit 2ce80bdf6e
2 changed files with 514 additions and 164 deletions

View File

@@ -11,24 +11,26 @@ const logos = [
const LogoCloud: React.FC = () => {
return (
<section className="py-16 bg-slate-50 border-y border-slate-200">
<div className="max-w-5xl mx-auto px-6 flex flex-col gap-6 items-center">
<span className="text-xs uppercase tracking-[0.28em] text-slate-500">
Trusted by modern SEO + content teams
</span>
<div className="flex flex-wrap justify-center gap-8 md:gap-12">
{logos.map((name) => (
<div
key={name}
className="h-8 md:h-10 opacity-70 hover:opacity-100 transition"
>
<img
src={`/marketing/images/logo-${name}.svg`}
alt={`${name} logo`}
className="h-full w-auto"
/>
</div>
))}
<section className="py-12 bg-white">
<div className="max-w-6xl mx-auto px-6">
<div className="flex flex-col gap-6 items-center">
<span className="text-xs uppercase tracking-[0.28em] text-slate-500 font-medium">
Trusted by modern organic teams
</span>
<div className="flex flex-wrap justify-center gap-8 md:gap-12 items-center">
{logos.map((name) => (
<div
key={name}
className="h-8 md:h-10 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition"
>
<img
src={`/marketing/images/logo-${name}.svg`}
alt={`${name} logo`}
className="h-full w-auto"
/>
</div>
))}
</div>
</div>
</div>
</section>