-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathnavigation.js
More file actions
76 lines (74 loc) · 2.46 KB
/
navigation.js
File metadata and controls
76 lines (74 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
export const headerData = {
links: [
{
text: 'Blog',
links: [
{
text: 'Read the blog',
href: getBlogPermalink(),
},
{
text: 'Version 6.6.6 and what is next?',
href: getPermalink('2025-06-11-version-6-6-6', 'post'),
},
{
text: 'Current developments',
href: getPermalink('v6', 'tag'),
},
],
},
{
text: 'About us',
href: '/support',
},
{
text: 'Lychee <span class="text-sky-500 ml-1">SE</span>',
href: '/get-supporter-edition',
},
{
text: 'Docs',
href: '/docs',
},
],
position: 'right',
actions: [{ text: 'Download', href: 'https://github.com/LycheeOrg/Lychee', target: '_blank' }],
};
export const footerData = {
links: [
{
title: 'Need help?',
links: [
{ text: 'Read the Docs', href: '/docs' },
{ text: 'Community Forum', href: 'https://github.com/LycheeOrg/Lychee/discussions' },
{ text: 'Join our discord', href: 'https://discord.gg/JMPvuRQcTf' },
],
},
{
title: 'Support Lychee',
links: [
{ text: 'Get Lychee <span class="text-sky-500">SE</span>', href: 'https://lycheeorg.dev/get-supporter-edition' },
{ text: 'GitHub sponsor', href: 'https://github.com/sponsors/LycheeOrg' },
{ text: 'Open Collective', href: 'https://opencollective.com/LycheeOrg' },
{ text: 'Translations', href: 'https://weblate.lycheeorg.dev' },
],
},
{
title: 'Security',
links: [
{ text: 'Cosign key', href: getPermalink('lychee-cosign.pub') },
]
}
],
secondaryLinks: [
{ text: 'License', href: getPermalink('/license') },
{ text: 'Release Notes', href: getPermalink('/docs/releases.html') },
{ text: 'Privacy Policy', href: getPermalink('/privacy-policy') },
{ text: 'Pull Request Dashboard', href: 'https://pr.lycheeorg.dev/' },
],
socialLinks: [
{ ariaLabel: 'RSS', icon: 'tabler:rss', href: getAsset('/rss.xml') },
{ ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/LycheeOrg/Lychee' },
],
footNote: `Maintained by <a class="text-sky-500" href="https://github.com/LycheeOrg">LycheeOrg</a> — Built with <a class="text-sky-500" href="https://astro.build">Astro</a> & <a class="text-sky-500" href="https://tailwindcss.com">Tailwind CSS</a>`,
};