aboutsummaryrefslogtreecommitdiff
path: root/src/config.ts
blob: d0c98eab675bb797b2fb4131001bc833dcd903e8 (plain) (blame)
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
export const config = {
	author: {
		name: "Valentin Popov",
		email: "valentin@popov.link",
		url: "https://popov.link/",
		sameAs: ["https://www.linkedin.com/in/valentineus/", "https://github.com/valentineus"],
	},

	// Open Graph
	og: {
		color: {
			bg: "#181818",
			bgCode: "#3b3d42",
			blossom: "#6da13f",
			text: "#dee2e6",
		},
		defaultPreview: "/images/photo.png",
		dimensions: {
			height: 630,
			width: 1200,
		},
		fonts: {
			bold: "./src/assets/JetBrainsMono/JetBrainsMono-Bold.ttf",
			regular: "./src/assets/JetBrainsMono/JetBrainsMono-Regular.ttf",
		},
		photo: "./public/images/photo.png",
		website: "popov.link",
	},
};