This commit is contained in:
2024-06-15 02:11:49 +03:00
parent 7a67051ae0
commit d02e35e0d7
82 changed files with 31138 additions and 19 deletions

31
src/types.ts Normal file
View File

@@ -0,0 +1,31 @@
export interface Site {
title: string
author: string
url: string
description: string
shortDescription: string
}
export interface NavigationLink {
name: string
url: string
}
export interface PickUpPost {
title: string
slug: string
}
export interface Social {
twitter?: string
blog?: string
github?: string
}
export interface User {
avatar: string
name: string
title: string
description: string
social: Social
}