summaryrefslogtreecommitdiff
path: root/src/types.ts
blob: 58660071842220767466413a9f85bceeb2095532 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
interface Project {
  name: string;
  description: string;
  image: string;
  alt: string;
  url: string;
}

interface BlogPost {
  title: string;
  tags: string[];
  date: string;
  description: string;
}