We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f822018 commit d2e6ff3Copy full SHA for d2e6ff3
packages/docs/src/components/footer/footer.tsx
@@ -90,7 +90,7 @@ export const FooterSocialLinks = component$(() => {
90
];
91
92
return (
93
- <div class="flex gap-4 mt-4">
+ <ul class="flex gap-4 mt-4">
94
{socialLinks.map(({ title, href, Logo }) => (
95
<li key={title} class="list-none">
96
<a href={href} target="_blank" title={title}>
@@ -100,6 +100,6 @@ export const FooterSocialLinks = component$(() => {
100
</a>
101
</li>
102
))}
103
- </div>
+ </ul>
104
);
105
});
0 commit comments