blog.z0x.ca/src/types.ts
z0x 36870785bc
All checks were successful
build dist / build-dist (push) Successful in 32s
refactor: biome lint
2025-04-24 22:12:22 -04:00

16 lines
242 B
TypeScript

export type Site = {
title: string;
description: string;
href: string;
featuredPostCount: number;
postsPerPage: number;
};
export type SocialLink = {
href: string;
label: string;
};
export type IconMap = {
[key: string]: string;
};