set up Biome

This commit is contained in:
2025-10-28 17:17:41 -04:00
parent 5a5c72850d
commit a1ea385448
39 changed files with 2476 additions and 719 deletions
+3 -3
View File
@@ -4,7 +4,7 @@ export interface NavLink {
}
export const navLinks: NavLink[] = [
{ label: 'Blog', path: 'blog/page/1' },
{ label: 'Now', path: 'now' },
{ label: 'Projects', path: 'projects' },
{ label: "Blog", path: "blog/page/1" },
{ label: "Now", path: "now" },
{ label: "Projects", path: "projects" },
];
+12 -12
View File
@@ -1,6 +1,6 @@
import autodockImg from '@assets/projects/autodock.png';
import keystashImg from '@assets/projects/keystash.png';
import bggClientImg from '@assets/projects/bgg-client.png';
import autodockImg from "@assets/projects/autodock.png";
import bggClientImg from "@assets/projects/bgg-client.png";
import keystashImg from "@assets/projects/keystash.png";
export interface Project {
title: string;
@@ -11,24 +11,24 @@ export interface Project {
export const projects: Project[] = [
{
title: 'AutoDock',
title: "AutoDock",
description:
'A MacOS menubar utility for automatically hiding and showing the Dock based on the screen size of the connected displays.',
"A MacOS menubar utility for automatically hiding and showing the Dock based on the screen size of the connected displays.",
image: autodockImg,
link: 'https://github.com/ghall89/AutoDock',
link: "https://github.com/ghall89/AutoDock",
},
{
title: 'KeyStash',
title: "KeyStash",
description:
'A MacOS application for managing software license keys for software purchased outside the Mac App Store.',
"A MacOS application for managing software license keys for software purchased outside the Mac App Store.",
image: keystashImg,
link: 'https://github.com/ghall89/KeyStash',
link: "https://github.com/ghall89/KeyStash",
},
{
title: 'bgg-client',
title: "bgg-client",
description:
'A TypeScript client for working with the BoardGameGeek.com API.',
"A TypeScript client for working with the BoardGameGeek.com API.",
image: bggClientImg,
link: 'https://www.npmjs.com/package/bgg-client',
link: "https://www.npmjs.com/package/bgg-client",
},
];