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' }, ]