all repos — website @ 0a01e0125d58d65a63fe35d296352a7346d6aa00

My official website.

src/consts.ts (view raw)

 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
export type Site = {
  TITLE: string
  DESCRIPTION: string
  EMAIL: string
  NUM_POSTS_ON_HOMEPAGE: number
  POSTS_PER_PAGE: number
  SITEURL: string
}

export type Link = {
  href: string
  label: string
}

export const SITE: Site = {
  TITLE: 'FoggyMtnDrifter',
  DESCRIPTION:
    'This is my digital playground where I whip up code concoctions, document my caffeine-fueled brainstorms, and showcase projects that might just change the world (or not).',
  EMAIL: 'michael@foggymtndrifter.com',
  NUM_POSTS_ON_HOMEPAGE: 2,
  POSTS_PER_PAGE: 5,
  SITEURL: 'https://foggymtndrifter.com',
}

export const NAV_LINKS: Link[] = [
  { href: '/blog', label: 'blog' },
  { href: '/about', label: 'about' },
  { href: '/tags', label: 'tags' },
]

export const SOCIAL_LINKS: Link[] = [
  { href: 'https://github.com/FoggyMtnDrifter', label: 'GitHub' },
  { href: 'https://gts.foggymtndrifter.com/@michael', label: 'Fediverse' },
  { href: 'michael@foggymtndrifter.com', label: 'Email' },
  { href: '/rss.xml', label: 'RSS' },
]