blog.z0x.ca/src/types.ts
2025-03-22 17:21:30 -07:00

16 lines
239 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
}