41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
// what does this file do?
|
|
// see json/site_content/header.json
|
|
// instead
|
|
export const defaultHeaderLinks = [
|
|
{
|
|
href: 'https://docs.laconic.com/',
|
|
title: 'Developers',
|
|
content: [
|
|
{ href: 'https://github.com/LaconicNetwork', title: 'GitHub' },
|
|
{ href: '/about#roadmap', title: 'Roadmap' },
|
|
{ href: 'https://discord.com/invite/ukhbBemyxY', title: 'Chat' }
|
|
]
|
|
},
|
|
{
|
|
href: '/products',
|
|
title: 'Products',
|
|
content: [
|
|
{ href: '/products#laconicwatchers', title: 'Watchers (SDK)' },
|
|
{ href: '/products#laconicstack', title: 'Stack' },
|
|
{ href: '/products#laconicnetwork', title: 'Network' },
|
|
{ href: '/products#laconicapp', title: 'App' },
|
|
]
|
|
},
|
|
{
|
|
href: '/about',
|
|
title: 'About',
|
|
content: [
|
|
{ href: '/about#team', title: 'Team' },
|
|
{ href: '/partners', title: 'Partners' },
|
|
{ href: '/press', title: 'Newsroom' },
|
|
{ href: '/careers', title: 'Careers' },
|
|
{ href: '/contact', title: 'Contact' }
|
|
]
|
|
},
|
|
{
|
|
href: '/community',
|
|
title: 'Community'
|
|
},
|
|
{ href: '/blog', title: 'Blog' }
|
|
]
|