-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmetaupdata.ts
43 lines (42 loc) · 939 Bytes
/
metaupdata.ts
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
import { Metaupdata } from './types/Metaupdata'
export const metaupdata: Metaupdata = {
city: {
name: 'Atlanta',
position: 'left',
},
description:
'The Atlanta BitDevs is a place for free and open Bitcoin education in Atlanta. Discussions will be technical but are open to people of all skill levels. Join the community and #LearnBitcoinTogether!',
colors: {
primary: {
hex: '#FFFFFF',
rgb: 'rgb(255, 153, 0)',
},
secondary: {
hex: '#333333',
rgb: 'rgb(51, 51, 51)',
},
tertiary: {
hex: '#FF9900',
rgb: 'rgb(255, 255, 255)',
},
},
mainNav: [
{
text: 'Home',
link: '/',
},
{
text: 'About',
link: '/page/about',
},
{
text: 'Meetup',
link: 'https://www.meetup.com/atlantabitdevs/',
},
{
text: 'Contact',
link: '/page/contact',
},
],
image: '/atlanta-bitdevs-poster.jpg',
}