11import { Trans } from '@lingui/macro' ;
2- import { GitHub , Instagram , X } from '@mui/icons-material' ;
2+ import { GitHub , Instagram , LinkedIn , X } from '@mui/icons-material' ;
33import { Box , styled , SvgIcon , Typography } from '@mui/material' ;
4+ import { DuneIcon , TikTok } from 'public/icons/footer/icons' ;
45import { Link } from 'src/components/primitives/Link' ;
56import { useRootStore } from 'src/store/root' ;
67import { useShallow } from 'zustand/shallow' ;
@@ -22,30 +23,45 @@ const StyledLink = styled(Link)<StyledLinkProps>(({ theme }) => ({
2223} ) ) ;
2324
2425const FOOTER_ICONS = [
25- {
26- href : 'https://hey.xyz/u/aave' ,
27- icon : < LensLogoIcon /> ,
28- title : 'Aave on Lens' ,
29- } ,
3026 {
3127 href : 'https://twitter.com/aave' ,
3228 icon : < X /> ,
3329 title : 'Twitter' ,
3430 } ,
31+ {
32+ href : 'https://www.instagram.com/aave/' ,
33+ icon : < Instagram /> ,
34+ title : 'Instagram' ,
35+ } ,
36+ {
37+ href : 'https://www.tiktok.com/@aavelabs' ,
38+ icon : < TikTok /> ,
39+ title : 'TikTok' ,
40+ } ,
41+ {
42+ href : 'https://www.linkedin.com/company/aavelabs/' ,
43+ icon : < LinkedIn /> ,
44+ title : 'Linkedin' ,
45+ } ,
3546 {
3647 href : 'https://discord.com/invite/aave' ,
3748 icon : < DiscordIcon /> ,
3849 title : 'Discord' ,
3950 } ,
51+ {
52+ href : 'https://dune.com/aavelabs' ,
53+ icon : < DuneIcon /> ,
54+ title : 'Dune' ,
55+ } ,
4056 {
4157 href : 'https://github.com/aave' ,
4258 icon : < GitHub /> ,
4359 title : 'Github' ,
4460 } ,
4561 {
46- href : 'https://www.instagram.com/aave/ ' ,
47- icon : < Instagram /> ,
48- title : 'Instagram ' ,
62+ href : 'https://hey.xyz/u/aave ' ,
63+ icon : < LensLogoIcon /> ,
64+ title : 'Aave on Lens ' ,
4965 } ,
5066] ;
5167
0 commit comments