Add GitGud and astro-htaccess integration

This commit is contained in:
Bad Manners 2024-08-30 17:21:52 -03:00
parent 4829af9f55
commit 37fba2f602
11 changed files with 260 additions and 94 deletions

View file

@ -0,0 +1,15 @@
---
import SVGIcon from "../SVGIcon.astro";
type Props = {
width: string;
height: string;
class?: string;
};
---
<SVGIcon {...Astro.props} viewBox="0 0 64 64">
<path
d="m 36.993869,17.726834 v 12.225173 h 2.394368 V 20.09654 Z m -13.514274,0.08071 -2.12758,2.102917 v 7.913966 l 2.102918,2.12758 h 7.201038 l 2.105159,-2.12758 v -5.107086 h -3.631905 l -2.190352,2.266578 h 3.403229 v 1.833888 l -0.831751,0.789156 h -4.954636 l -0.813816,-0.735349 v -5.918661 l 0.813816,-0.939363 h 6.100256 l 2.18811,-2.206045 z m 20.141381,0 v 2.206045 h 3.495148 v 9.938418 h 2.208288 v -9.938418 h 2.311417 l 2.185868,-2.206045 z M 2.0804992,21.381159 c -1.015668,0 -2.0804994,1.073278 -2.0804994,2.098434 0,1.450184 0.9358272,2.417282 2.2979654,2.378673 0.560224,-0.01588 0.855434,0.172661 1.822677,1.150103 0.986935,0.99734 1.139079,1.248956 1.046976,1.730761 -0.13363,0.699044 0.377082,2.024795 0.883315,2.295722 0.347105,0.185766 0.376642,0.479482 0.376642,3.67226 0,3.444753 -0.0039,3.475336 -0.502189,3.943532 -1.167101,1.096434 -0.989099,3.009422 0.349739,3.752969 0.249472,0.138548 0.825602,0.253886 1.280135,0.25782 2.085557,0.01795 3.0021788,-2.459127 1.475181,-3.986128 l -0.594108,-0.594108 v -3.374085 -3.371843 l 1.188215,1.174764 c 1.1009768,1.089498 1.1849758,1.239391 1.1545878,2.024451 -0.06035,1.559523 0.857477,2.510947 2.42127,2.510947 0.899188,0 1.547075,-0.397971 1.966161,-1.208391 0.385952,-0.74635 0.37578,-1.276275 -0.03139,-2.134305 -0.394989,-0.832379 -1.264716,-1.324592 -2.197079,-1.244265 -0.604892,0.05211 -0.833817,-0.08825 -1.954952,-1.199424 -1.0771668,-1.067593 -1.2594548,-1.346266 -1.1882148,-1.831647 0.196023,-1.335595 -1.111686,-2.710788 -2.468351,-2.593898 -0.606738,0.05227 -0.834178,-0.07706 -1.78905,-1.020072 -1.02439,-1.01167 -1.093688,-1.138948 -1.073875,-2.008758 0.035079,-1.540265 -0.831856,-2.423512 -2.383156,-2.423512 z m 21.3990958,12.718394 -2.12758,2.107402 v 7.911724 l 2.102918,2.12758 h 7.201038 l 2.105159,-2.12758 v -5.104844 h -3.631905 l -2.190352,2.264336 h 3.403229 v 1.833888 l -0.831751,0.789155 h -4.954636 l -0.813816,-0.733106 v -5.920904 l 0.813816,-0.939362 h 6.100256 l 2.18811,-2.208289 z m 13.469436,0.03139 v 10.014643 l 2.102918,2.12758 h 7.201036 l 2.105161,-2.12758 V 34.13094 H 45.96602 v 9.176165 l -0.955056,0.686027 -4.802185,-0.009 -0.869865,-0.681543 v -9.171681 z m 15.641854,0 V 46.273165 H 61.89484 L 64,44.145585 v -7.891547 l -2.10516,-2.123095 z m 2.392125,2.203804 5.734823,0.04708 0.890042,0.71517 v 6.16303 l -0.919187,0.76001 -5.705678,0.04484 z"
></path>
</SVGIcon>

View file

@ -4,6 +4,7 @@ export { default as IconCohost } from "./IconCohost.astro";
export { default as IconDiscord } from "./IconDiscord.astro";
export { default as IconEkasPortal } from "./IconEkasPortal.astro";
export { default as IconFurAffinity } from "./IconFurAffinity.astro";
export { default as IconGitGud } from "./IconGitGud.astro";
export { default as IconGithub } from "./IconGithub.astro";
export { default as IconGitlab } from "./IconGitlab.astro";
export { default as IconGoogle } from "./IconGoogle.astro";