ui.configs.ts
1 export const uiConfigs = { 2 navbarRenderedHeight: 80, 3 navbarMobileHeight: 60, 4 maxContainerWidth: 1376, 5 articleRenderedMT: 45 * 2, 6 } 7 8 export const breakpoints = { 9 sm: 768, 10 md: 1024, 11 lg: 1280, 12 xl: 1440, 13 } 14 15 export const footerBUs = [ 16 { 17 name: 'Waku', 18 link: 'https://waku.org/', 19 }, 20 { 21 name: 'Nimbus', 22 link: 'https://nimbus.team/', 23 }, 24 { 25 name: 'Codex', 26 link: 'https://codex.storage/', 27 }, 28 { 29 name: 'Nomos', 30 link: 'https://nomos.tech/', 31 }, 32 { 33 name: 'Status', 34 link: 'https://status.app/', 35 }, 36 { 37 name: 'Keycard', 38 link: 'https://keycard.tech/', 39 }, 40 { 41 name: 'Logos', 42 link: 'https://logos.co/', 43 }, 44 ] 45 46 export const footerSocial = [ 47 { 48 name: 'LinkedIn', 49 link: 'https://www.linkedin.com/company/institute-of-free-technologies/', 50 }, 51 { 52 name: 'X', 53 link: 'https://twitter.com/InstituteFT', 54 }, 55 ]