feat: add site box
also make mobile easier to see
This commit is contained in:
23
shared/types.d.ts
vendored
Normal file
23
shared/types.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { ParsedContent } from "@nuxt/content/dist/runtime/types";
|
||||
|
||||
interface ReadingTime {
|
||||
text: string;
|
||||
minutes: number;
|
||||
time: number;
|
||||
words: number;
|
||||
}
|
||||
|
||||
interface BlogParsedContent extends ParsedContent {
|
||||
date: Date;
|
||||
title: string;
|
||||
tags: string[];
|
||||
description?: Record<string, any>;
|
||||
readingTime: ReadingTime;
|
||||
}
|
||||
|
||||
interface StoryParsedContent extends ParsedContent {
|
||||
date: Date;
|
||||
title: string;
|
||||
tags: string[];
|
||||
readingTime: ReadingTime;
|
||||
}
|
Reference in New Issue
Block a user