mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 16:28:28 -04:00
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
// Site info
|
|
export const siteName = "Jake Jarvis";
|
|
export const siteLocale = "en-US";
|
|
export const timeZone = "America/New_York"; // https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
|
export const shortDescription = "Frontend Web Developer in Boston, MA";
|
|
export const longDescription =
|
|
"Hi there! I'm a frontend web developer based in Boston, Massachusetts specializing in TypeScript, React, Next.js, and other JavaScript frameworks.";
|
|
export const license = "Creative Commons Attribution 4.0 International";
|
|
export const licenseAbbr = "CC-BY-4.0";
|
|
export const licenseUrl = "https://creativecommons.org/licenses/by/4.0/";
|
|
export const copyrightYearStart = 2001;
|
|
export const githubRepo = "jakejarvis/jarv.is";
|
|
|
|
// Me info
|
|
export const authorName = "Jake Jarvis";
|
|
export const authorEmail = "jake@jarv.is";
|
|
export const authorSocial = {
|
|
github: "jakejarvis",
|
|
twitter: "jakejarvis",
|
|
facebook: "jakejarvis",
|
|
medium: "jakejarvis",
|
|
linkedin: "jakejarvis",
|
|
instagram: "jakejarvis",
|
|
mastodon: "fediverse.jarv.is/@jake",
|
|
bluesky: "jarv.is",
|
|
};
|