This commit is contained in:
Zeno Kapitein
2026-01-21 12:23:57 +01:00
parent 2963a2c0a7
commit 680476a8a4
@@ -8,7 +8,6 @@ import { tcls } from '@/lib/tailwind';
import { ThemeToggler } from '../ThemeToggler';
import { CONTAINER_STYLE } from '../layout';
import { FooterLinksGroup } from './FooterLinksGroup';
import { SocialLink } from './SocialLink';
const FOOTER_COLUMNS = 4;
@@ -145,11 +144,9 @@ export function Footer(props: { context: GitBookSiteContext }) {
socialLinks.length > 0 ? (
<div className="col-span-full flex w-full grow items-center justify-center gap-2">
{socialLinks.map((account) => (
<SocialLink
key={`${account.platform}-${account.handle}`}
account={account}
target={customization.externalLinks.target}
/>
<div key={`${account.platform}-${account.handle}`}>
Test
</div>
))}
</div>
) : null