18 lines
241 B
TypeScript
18 lines
241 B
TypeScript
export type Site = {
|
|
title: string
|
|
description: string
|
|
href: string
|
|
author: string
|
|
locale: string
|
|
location: string
|
|
}
|
|
|
|
export type SocialLink = {
|
|
href: string
|
|
label: string
|
|
}
|
|
|
|
export type IconMap = {
|
|
[key: string]: string
|
|
}
|