17 lines
840 B
TypeScript
17 lines
840 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: 'Soiftware 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: "",
|
|
skills: ['Go', 'Python', 'TypeScript', 'Rust', 'Linux', 'Docker', 'PostgreSQL', 'Git', 'Nix'],
|
|
email: 'qemuguest@protonmail.com',
|
|
repoLimit: 6,
|
|
commitFetchRepos: 4,
|
|
};
|