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