feat: json rich text editor, blocks, asides, general structure
This commit is contained in:
@@ -1,16 +1,11 @@
|
||||
import type { AllRequestResponse } from "./utils/all"
|
||||
import type { Edges } from "./utils/edges"
|
||||
import { Asset } from "./utils/asset"
|
||||
import { PageLink } from "./utils/pageLink"
|
||||
|
||||
type AppDownloadLink = {
|
||||
title: string
|
||||
url: string
|
||||
}
|
||||
import type { Image } from "../image"
|
||||
import type { PageLink } from "./utils/pageLink"
|
||||
|
||||
type AppDownload = {
|
||||
href: string
|
||||
imageConnection: Edges<Asset>
|
||||
imageConnection: Edges<Image>
|
||||
}
|
||||
|
||||
export type InternalLink = {
|
||||
@@ -52,7 +47,7 @@ export type Footer = {
|
||||
app_store: AppDownload
|
||||
google_play: AppDownload
|
||||
}
|
||||
logoConnection: Edges<Asset>
|
||||
logoConnection: Edges<Image>
|
||||
navigation: NavigationItem[]
|
||||
social_media: {
|
||||
title: string
|
||||
@@ -62,7 +57,7 @@ export type Footer = {
|
||||
}
|
||||
trip_advisor: {
|
||||
title: string
|
||||
logoConnection: Edges<Asset>
|
||||
logoConnection: Edges<Image>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user