mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 13:47:49 +00:00
12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
import type { Image } from 'sanity'
|
|
|
|
export interface HomePagePayload {
|
|
content?: []
|
|
title?: string
|
|
_type?: string
|
|
seo?: {
|
|
title?: string;
|
|
description?: string;
|
|
image: Image
|
|
}
|
|
} |