Skip to content

Commit a6ea271

Browse files
committed
feat: Added LinkedIn icon to footer and updated link
1 parent 802a535 commit a6ea271

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

src/components/Footer.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import IconFacebookBrand from "./icons/IconFacebookBrand.astro";
33
import IconInstagramBrand from "./icons/IconInstagramBrand.astro";
44
import IconGithubBrand from "./icons/IconGithubBrand.astro";
55
import IconXBrand from "./icons/IconXBrand.astro";
6+
import IconLinkedInBrand from "./icons/IconLinkedInBrand.astro";
67
---
78

89
<footer class="bg-gray-900 text-white py-6">
@@ -13,11 +14,11 @@ import IconXBrand from "./icons/IconXBrand.astro";
1314
aria-label="Facebook">
1415
<IconFacebookBrand class="size-6" />
1516
</a>
16-
<a href="https://x.com/DevsUpiics48486"
17+
<a href="https://www.linkedin.com/company/binary-brains-upiicsa/"
1718
class="text-gray-400 hover:text-white mr-4 rounded-full p-2 bg-transparent"
1819
target="_blank"
19-
aria-label="X (formerly Twitter)">
20-
<IconXBrand class="size-6" />
20+
aria-label="LinkedIn">
21+
<IconLinkedInBrand class="size-6" />
2122
</a>
2223
<a href="https://www.instagram.com/bbupiicsa/"
2324
class="text-gray-400 hover:text-white mr-4 rounded-full p-2 bg-transparent"
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
interface Props {
3+
class?: string;
4+
}
5+
6+
const { class: className } = Astro.props;
7+
---
8+
9+
<svg
10+
xmlns="http://www.w3.org/2000/svg"
11+
viewBox="0 0 24 24"
12+
fill="none"
13+
stroke="currentColor"
14+
stroke-width="2"
15+
stroke-linecap="round"
16+
stroke-linejoin="round"
17+
class={`icon icon-tabler icons-tabler-outline icon-tabler-brand-linkedin ${className ?? "size-6"}`}
18+
><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M8 11v5"
19+
></path><path d="M8 8v.01"></path><path d="M12 16v-5"></path><path
20+
d="M16 16v-3a2 2 0 1 0 -4 0"></path><path
21+
d="M3 7a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z"
22+
></path></svg
23+
>

0 commit comments

Comments
 (0)