aboutsummaryrefslogtreecommitdiff
path: root/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
new file mode 100644
index 0000000..d0c98ea
--- /dev/null
+++ b/src/config.ts
@@ -0,0 +1,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",
+ },
+};