Files
williammarch.xyz/lib/config.ts
2026-04-02 20:38:56 +01:00

17 lines
1019 B
TypeScript

// ★ UPDATE THESE ★
export const GITEA_URL = process.env.NEXT_PUBLIC_GITEA_URL ?? 'https://git.williammarch.xyz';
export const GITEA_USERNAME = process.env.NEXT_PUBLIC_GITEA_USERNAME ?? 'm0dus';
export const GITEA_TOKEN = process.env.NEXT_PUBLIC_GITEA_TOKEN ?? '';
export const SITE = {
name: 'William March',
title: 'Software Engineer',
tagline: 'Building precise, purposeful, open-source software.',
about1: "I'm a software engineer focused on writing clean, reliable code. I care about open-source tools that solve real problems — the kind that make other engineers' lives easier.",
about2: "From small CLI utilities to complex systems, I approach every project with the same level of craft. Good code reads like good writing: clear, intentional, and easy to reason about.",
skills: ['Go', 'Python', 'TypeScript', 'Rust', 'Linux', 'Docker', 'PostgreSQL', 'Git', 'Nix'],
email: 'william@williammarch.xyz',
repoLimit: 6,
commitFetchRepos: 4,
};