mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-16 15:44:08 +00:00
feat: hydratation error
This commit is contained in:
parent
cfc7e367af
commit
da5ed786e3
@ -193,7 +193,7 @@
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-rows: auto;
|
||||
|
||||
li {
|
||||
div {
|
||||
width: tovw(24px, 'default', 24px);
|
||||
height: tovw(24px, 'default', 24px);
|
||||
}
|
||||
@ -229,7 +229,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
> li {
|
||||
div {
|
||||
display: flex;
|
||||
gap: tovw(37px, 'default', 24px);
|
||||
@media screen and (max-width: 800px) {
|
||||
|
||||
@ -60,6 +60,7 @@ export const Footer = () => {
|
||||
<div className={s['logo']}>
|
||||
<Link variant="unstyled" href="/">
|
||||
<LogoFooter />
|
||||
<span className="sr-only">Laconic</span>
|
||||
</Link>
|
||||
</div>
|
||||
<nav>
|
||||
@ -114,14 +115,14 @@ export const Footer = () => {
|
||||
</Link>
|
||||
</li>
|
||||
<li>
|
||||
{ConnectLinks.map((link) => {
|
||||
{ConnectLinks.map((link, index) => {
|
||||
return (
|
||||
<li key={link.title}>
|
||||
<div key={`${link.title}-${index}`}>
|
||||
<Link href={link.href} variant="unstyled">
|
||||
<span className="sr-only">{link.title}</span>
|
||||
{link.logo && link.logo}
|
||||
</Link>
|
||||
</li>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
</li>
|
||||
@ -131,7 +132,7 @@ export const Footer = () => {
|
||||
<Container>
|
||||
<nav className={s['sub__footer']}>
|
||||
<ul>
|
||||
<li>
|
||||
<div>
|
||||
<li>
|
||||
<Link href="/privacy-policy" variant="nav">
|
||||
Privacy Policy
|
||||
@ -142,7 +143,7 @@ export const Footer = () => {
|
||||
Terms of Use
|
||||
</Link>
|
||||
</li>
|
||||
</li>
|
||||
</div>
|
||||
<li>
|
||||
<p>Laconic, The Source of Proof</p>
|
||||
</li>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user