fredy.siswanto f17627bdf2 style: slicing home page, adjust for mobile view
slicing home page, adjust for mobile view
2025-02-20 01:37:35 +07:00

12 lines
183 B
TypeScript

export type TNews = {
title: string
description: string
type: 'hero' | 'grid'
items: {
title: string
content: string
image: string
tag?: Array<string>
}[]
}