feat: organize to consistency

This commit is contained in:
2026-02-16 22:36:24 -06:00
parent 19e17ea947
commit 6c2c6da91d

View File

@@ -33,8 +33,7 @@ const socialPlatforms: SocialPlatform[] = [
--- ---
<div class="inline-flex items-center gap-x-2"> <div class="inline-flex items-center gap-x-2">
{ {socialPlatforms.map((platform) => (
socialPlatforms.map((platform) => (
<a <a
class="button-base-hidden group inline-flex rounded-lg gap-x-2" class="button-base-hidden group inline-flex rounded-lg gap-x-2"
href={platform.url} href={platform.url}
@@ -43,9 +42,11 @@ const socialPlatforms: SocialPlatform[] = [
title={`Share on ${platform.name}`} title={`Share on ${platform.name}`}
> >
<div class="button-text-title-hidden flex relative items-center text-center"> <div class="button-text-title-hidden flex relative items-center text-center">
<Icon name={platform.svg} class="h-5 w-5" /> <Icon
name={platform.svg}
class="h-5 w-5"
/>
</div> </div>
</a> </a>
)) ))}
}
</div> </div>