-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.js
149 lines (135 loc) · 3 KB
/
theme.config.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/** *************************************************************
* Please refer to the Theme Options section in documentation *
****************************************************************/
/**
* Icons from react-icons: https://react-icons.github.io/react-icons
*/
import { IoLogoTwitter, IoLogoInstagram, IoLogoLinkedin } from 'react-icons/io5'
import { TfiHome, TfiPencilAlt } from 'react-icons/tfi'
import { SlUser, SlBriefcase, SlEnvolope, SlTrophy } from 'react-icons/sl'
/**
* Main Menu Items
*/
export const menu = [
{
name: 'Home',
slug: '/',
Icon: TfiHome,
number: '',
},
{
name: 'Services',
slug: '/services',
Icon: SlBriefcase,
},
{
name: 'Projects',
slug: '/projects',
Icon: SlTrophy,
},
// {
// name: 'Home (2)',
// slug: '/index-2',
// Icon: TfiHome,
// number: 2,
// },
// {
// name: 'Home (3)',
// slug: '/index-3',
// Icon: TfiHome,
// number: 3,
// },
// {
// name: 'Home (4)',
// slug: '/index-4',
// Icon: TfiHome,
// number: 4,
// },
{
name: 'About',
slug: '/about',
Icon: SlUser,
},
{
name: 'Articles',
slug: '/blog',
Icon: TfiPencilAlt,
},
{
name: 'Contact',
slug: '/contact',
Icon: SlEnvolope,
},
]
/**
* Social Links under the Main Menu
*/
export const social = [
{
name: 'Twitter',
url: 'https://www.twitter.com/yulluone',
Icon: IoLogoTwitter,
},
// {
// name: 'Instagram',
// url: 'https://www.instagram.com/',
// Icon: IoLogoInstagram,
// },
{
name: 'LinkedIn',
url: 'https://www.linkedin.com/in/joshuayullu/',
Icon: IoLogoLinkedin,
},
]
/**
* General configurations
*/
export const config = {
dateLocale: 'en-US',
dateOptions: {
// dateOptions is passed to JavaScript's toLocaleDateString()
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: 'UTC',
},
convertKit: {
tipUrl: 'https://fantastic-mover-3439.ck.page/products/blog',
},
contactForm: {
inputs: require('./content/contact-form.json'),
recipient: '[email protected]',
sender: '[email protected]',
subject: 'EMAIL NOTIFICATION FROM WEBSITE',
},
}
/**
* MDX/Markdown configurations
*/
export const mdxConfig = {
publicDir: 'public',
pagesDir: 'content',
fileExt: '.md',
collections: ['/blog', '/projects'],
remarkPlugins: [],
rehypePlugins: [],
}
/**
* Global SEO configuration for next-seo plugin
* https://github.com/garmeeh/next-seo
*/
export const siteMetaData = {
siteUrl: process.env.NEXT_PUBLIC_SITE_URL || process.env.VERCEL_URL || 'http://localhost:3000',
authorName: 'Joshua Yullu',
siteName: 'Joshua Yullu | Software Engineer For Hire',
defaultTitle: 'Joshua Yullu | Software Engineer For Hire',
titleTemplate: 'Yullu | %s',
description: 'A fun site for an serious developer.',
email: '[email protected]',
locale: 'en_US',
twitter: {
handle: '@yulluone',
site: '@yulluco.com',
cardType: 'summary_large_image',
},
}