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