11import { Column , Img , Link , Row , Section , Text } from "@react-email/components" ;
2- import { discordLink , githubRepo , patreonLink , paypalLink } from "common/constants" ;
32import { DOMAIN } from "common/envs/constants" ;
43
54interface Props {
@@ -15,40 +14,40 @@ export const Footer = ({
1514 < hr style = { { border : 'none' , borderTop : '1px solid #e0e0e0' , margin : '10px 0' } } />
1615 < Row >
1716 < Column align = "center" >
18- < Link href = { githubRepo } target = "_blank" >
17+ < Link href = { `https:// ${ DOMAIN } /github` } target = "_blank" >
1918 < Img
2019 src = { `https://${ DOMAIN } /images/github-logo.png` }
2120 width = "24"
2221 height = "24"
2322 alt = "GitHub"
24- style = { { display : "inline-block" , margin : "0 4px" } }
23+ style = { { display : "inline-block" , margin : "0 4px" } }
2524 />
2625 </ Link >
27- < Link href = { discordLink } target = "_blank" >
26+ < Link href = { `https:// ${ DOMAIN } /discord` } target = "_blank" >
2827 < Img
2928 src = { `https://${ DOMAIN } /images/discord-logo.png` }
3029 width = "24"
3130 height = "24"
3231 alt = "Discord"
33- style = { { display : "inline-block" , margin : "0 4px" } }
32+ style = { { display : "inline-block" , margin : "0 4px" } }
3433 />
3534 </ Link >
36- < Link href = { patreonLink } target = "_blank" >
35+ < Link href = { `https:// ${ DOMAIN } /patreon` } target = "_blank" >
3736 < Img
3837 src = { `https://${ DOMAIN } /images/patreon-logo.png` }
3938 width = "24"
4039 height = "24"
4140 alt = "Patreon"
42- style = { { display : "inline-block" , margin : "0 4px" } }
41+ style = { { display : "inline-block" , margin : "0 4px" } }
4342 />
4443 </ Link >
45- < Link href = { paypalLink } target = "_blank" >
44+ < Link href = { `https:// ${ DOMAIN } /paypal` } target = "_blank" >
4645 < Img
4746 src = { `https://${ DOMAIN } /images/paypal-logo.png` }
4847 width = "24"
4948 height = "24"
5049 alt = "PayPal"
51- style = { { display : "inline-block" , margin : "0 4px" } }
50+ style = { { display : "inline-block" , margin : "0 4px" } }
5251 />
5352 </ Link >
5453 </ Column >
0 commit comments