Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,23 +135,37 @@ export default function About() {
</p>
</div>
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 md:gap-14 justify-items-center">
<Stat
label={t('about.stats.users')}
target={stats.users}
<Stat
label={t('about.stats.users')}
target={stats.users}
/>
<Stat
label={t('about.stats.posts')}
target={stats.posts}
<Stat
label={t('about.stats.posts')}
target={stats.posts}
/>
<Stat
label={t('about.stats.creators')}
target={stats.creators}
<Stat
label={t('about.stats.creators')}
target={stats.creators}
/>
<Stat
label={t('about.stats.communities')}
target={stats.communities}
<Stat
label={t('about.stats.communities')}
target={stats.communities}
/>
</div>

<div className="mt-20 text-center text-white">
<h3 className="text-sm uppercase tracking-widest opacity-70 mb-4">
Partners
</h3>
<a
href="https://scrapegraphai.com/"
target="_blank"
rel="noopener"
className="inline-flex items-center gap-2 text-lg font-medium opacity-90 hover:opacity-100 transition-opacity underline-offset-4 hover:underline"
>
ScrapeGraphAI
</a>
</div>
</div>
</section>
);
Expand Down
11 changes: 0 additions & 11 deletions src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,17 +226,6 @@ export default function Hero() {
}
/>

<a
href="https://scrapegraphai.com/"
target="_blank"
rel="noopener noreferrer"
aria-hidden="true"
tabIndex={-1}
style={{ position: 'absolute', width: 0, height: 0, overflow: 'hidden', opacity: 0, pointerEvents: 'none' }}
>
sponsors
</a>

{/* LEGACY: ONLY ITALY! */}
{language === 'it' && (
<Button className="w-48 p-0 bg-transparent">
Expand Down