Files
portfolio/src/types.ts
2025-04-22 13:53:47 +03:00

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
}