This commit is contained in:
Henrik Larsson
2023-08-21 12:03:05 +02:00
parent 21f4893b70
commit 9cab4ac2c6
5 changed files with 12 additions and 22 deletions

View File

@@ -1,5 +1,11 @@
import type { Image } from 'sanity'
export interface MenuItem {
_type: string
slug?: string
title?: string
}
export interface HomePagePayload {
content?: []
title?: string
@@ -63,5 +69,5 @@ export interface SearchPayload {
export interface MainMenuPayload {
title?: string
_type?: string
items: []
items?: MenuItem[]
}