homeapge
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user