File tree Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import IconFacebookBrand from "./icons/IconFacebookBrand.astro";
3
3
import IconInstagramBrand from " ./icons/IconInstagramBrand.astro" ;
4
4
import IconGithubBrand from " ./icons/IconGithubBrand.astro" ;
5
5
import IconXBrand from " ./icons/IconXBrand.astro" ;
6
+ import IconLinkedInBrand from " ./icons/IconLinkedInBrand.astro" ;
6
7
---
7
8
8
9
<footer class =" bg-gray-900 text-white py-6" >
@@ -13,11 +14,11 @@ import IconXBrand from "./icons/IconXBrand.astro";
13
14
aria-label =" Facebook" >
14
15
<IconFacebookBrand class =" size-6" />
15
16
</a >
16
- <a href =" https://x. com/DevsUpiics48486 "
17
+ <a href =" https://www.linkedin. com/company/binary-brains-upiicsa/ "
17
18
class =" text-gray-400 hover:text-white mr-4 rounded-full p-2 bg-transparent"
18
19
target =" _blank"
19
- aria-label =" X (formerly Twitter) " >
20
- < IconXBrand class =" size-6" />
20
+ aria-label =" LinkedIn " >
21
+ < IconLinkedInBrand class =" size-6" />
21
22
</a >
22
23
<a href =" https://www.instagram.com/bbupiicsa/"
23
24
class =" text-gray-400 hover:text-white mr-4 rounded-full p-2 bg-transparent"
Original file line number Diff line number Diff line change
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
+ >
You can’t perform that action at this time.
0 commit comments