set <meta name="theme-color" ...> dynamically

This commit is contained in:
2022-01-01 12:11:15 -05:00
parent b5d039b9d6
commit c420967b4c
5 changed files with 54 additions and 28 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export const buildFeed = (notes: any[]) => {
link: `${config.baseURL}/`,
title: config.siteName,
description: config.longDescription,
copyright: "CC-BY-4.0",
copyright: "https://creativecommons.org/licenses/by/4.0/",
updated: new Date(),
image: `${config.baseURL}/static/images/me.jpg`,
feedLinks: {
+3 -1
View File
@@ -1,9 +1,11 @@
// Site info
export const siteName = "Jake Jarvis";
export const siteDomain = "jarv.is";
export const shortDescription = "Front-End Web Developer in Boston, MA 👨‍💻";
export const shortDescription = "Front-End Web Developer in Boston, MA";
export const longDescription =
"Hi there! I'm a frontend web developer based in Boston, Massachusetts specializing in the JAMstack, modern JavaScript frameworks, and progressive web apps.";
export const themeColorLight = "#fcfcfc";
export const themeColorDark = "#252525";
export const githubRepo = "jakejarvis/jarv.is";
export const fathomSiteId = "WBGNQUKW";
export const fathomCustomDomain = "blue-chilly.jarv.is";