-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.js
112 lines (103 loc) · 3.24 KB
/
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
// Config for the entire site.
module.exports = {
// Site title.
title: "Contact Bryon Tjanaka",
// Default description for pages. Provide "description" in the front matter of
// a page to override this.
description: "Contact info for Bryon Tjanaka.",
// Site URLs.
baseUrl: "https://contact.btjanaka.net", // No slash at the end.
shortBaseUrl: "contact.btjanaka.net", // Same as baseUrl but without http or https.
// Your name.
name: "Bryon Tjanaka",
// Profile picture on home page. Set to null to leave out.
profilePic: {
best: "https://btjanaka.net/static/btjanaka.jpg",
small: "https://btjanaka.net/static/btjanaka-1000x1000.jpg",
},
// Name pronunciation. Set to null to leave out.
pronunciation: "https://btjanaka.net/static/btjanaka.mp3",
// Tagline that shows up below the profile picture on the home page and below
// the name on the business card. Set to null to leave out.
tagline: "PhD Candidate, ICAROS Lab @ USC",
// Path to Open Graph image. Change this URL whenever the image changes so
// that sites like FB change their preview. Set to null to leave out.
openGraph: {
absolute: true,
url: "https://btjanaka.net/static/btjanaka-1000x1000.jpg",
},
// Path to Twitter preview image. Set to null to leave out.
twitterPreview: {
absolute: true,
url: "https://btjanaka.net/static/btjanaka-1000x1000.jpg",
},
// Links to your other websites.
// - "fa" is the FontAwesome code for the icon; for example, see here:
// https://fontawesome.com/v5.15/icons/globe-americas
// - textColor is configured strangely because tailwind needs to pick up on it
// and avoid purging the class name -- see here:
// https://tailwindcss.com/docs/optimizing-for-production#writing-purgeable-html
// - See tailwind.config.js (in the root of this repo) for how to add custom
// colors.
links: [
{
name: "Website",
desc: "btjanaka.net",
url: "https://btjanaka.net",
fa: "fas fa-globe-americas",
textColor: "text-website",
},
{
name: "Email",
desc: "tjanaka@usc.edu",
url: "mailto:tjanaka@usc.edu",
fa: "fas fa-envelope",
textColor: "text-gray-600",
},
{
name: "GitHub",
desc: "@btjanaka",
url: "https://github.com/btjanaka",
fa: "fab fa-github",
textColor: "text-black",
},
{
name: "Twitter",
desc: "@btjanaka",
url: "https://twitter.com/btjanaka",
fa: "fab fa-twitter",
textColor: "text-twitter",
},
{
name: "LinkedIn",
desc: "@btjanaka",
url: "https://www.linkedin.com/in/btjanaka/",
fa: "fab fa-linkedin",
textColor: "text-linkedin",
},
{
name: "Resume",
url: "https://btjanaka.net/btjanaka-resume.pdf",
fa: "fas fa-file-alt",
textColor: "text-yellow-500",
},
{
name: "CV",
url: "https://btjanaka.net/btjanaka-cv.pdf",
fa: "fas fa-file-alt",
textColor: "text-green-500",
},
{
name: "QR Code",
url: "/qr",
fa: "fas fa-link",
textColor: "text-black",
},
{
name: "How to Make This Website",
url: "https://github.com/btjanaka/contact",
fa: "far fa-clipboard",
textColor: "text-black",
},
],
};