-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.js
55 lines (49 loc) · 1.78 KB
/
footer.js
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
// Configuration for the footer component on all pages
// ----------- imports -----------
import { getPermalink, getBlogPermalink } from '~/utils/permalinks';
// ----------- imports -----------
const footerData = {
// List of links to be displayed in the footer
links: [
{
// The title of the section
title: 'Resources',
// List of links to be displayed in the section
links: [
{ text: 'Team', href: getPermalink('/team') },
{ text: 'Blog', href: getBlogPermalink() },
{ text: 'Open Source', href: 'https://github.com/caragolfoundation' },
{ text: 'Gallery', href: getPermalink('/gallery') },
],
},
{
title: 'Projects',
links: [{ text: 'Coming soon...', href: '#' }],
},
{
title: 'Contact',
links: [{ text: 'Contact Page', href: getPermalink('/contact') }],
},
],
// Secondary links to be displayed in the footer
secondaryLinks: [
// { text: 'Terms', href: getPermalink('/terms') },
// { text: 'Privacy Policy', href: getPermalink('/privacy') },
],
// A list of social links to be displayed in the footer
socialLinks: [
{ ariaLabel: 'Twitter', icon: 'tabler:brand-twitter', href: '#' },
{ ariaLabel: 'Instagram', icon: 'tabler:brand-instagram', href: '#' },
{ ariaLabel: 'Facebook', icon: 'tabler:brand-facebook', href: '#' },
{
ariaLabel: 'Github',
icon: 'tabler:brand-github',
href: 'https://github.com/caragolfoundation/caragolfoundation.org',
},
],
// The footnote to be displayed in the footer (can contain HTML)
footNote: `
Made by <a class="text-blue-600 hover:underline dark:text-gray-200" target="_blank" href="https://github.com/caragolfoundation"> The Caragol Foundation</a> with ❤️
`,
};
export default footerData;