Skip to content

Commit 3508dde

Browse files
committed
Fix footer
1 parent 8790a57 commit 3508dde

1 file changed

Lines changed: 14 additions & 16 deletions

File tree

src/components/Footer.astro

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,20 @@ const gitVersion = __GIT_VERSION__;
7878

7979
<div class="flex w-full lg:flex-row flex-col-reverse justify-between">
8080
<div class="terms py-2 text-center ">
81-
{
82-
TERMS.map((item) => (
83-
<a
84-
href={item.url}
85-
class="text-[var(--color-text-secondary)] hover:text-[var(--color-primary-hover)] transition-colors duration-200 mx-2"
86-
>
87-
{item.label}
88-
{item.external && (
89-
<span class="inline-block">342206227</span>
90-
)}
91-
</a>
92-
))
93-
}
81+
{
82+
TERMS.map((item) => (
83+
<a
84+
href={item.url}
85+
class="text-[var(--color-text-secondary)] hover:text-[var(--color-primary-hover)] transition-colors duration-200 mx-2"
86+
>
87+
{item.label}
88+
{item.external && (
89+
<span class="inline-block">↗</span>
90+
)}
91+
</a>
92+
))
93+
}
94+
</div>
9495

9596
{
9697
SOCIALS && (
@@ -100,9 +101,6 @@ const gitVersion = __GIT_VERSION__;
100101
class="opacity-60 pb-4"
101102
/>
102103
)
103-
}
104-
/>
105-
)
106104
}
107105
</div>
108106
</div>

0 commit comments

Comments
 (0)