feat: adj ui page detail, add breadcom component, add media sosial group

This commit is contained in:
fredy.siswanto
2025-02-20 22:20:27 +07:00
parent 878fb640af
commit 2e09e8a962
15 changed files with 471 additions and 74 deletions
+3 -2
View File
@@ -2,7 +2,7 @@ export type TNews = {
title: string
description: string
type: 'hero' | 'grid'
items: Pick<TNewsDetail, 'title' | 'content' | 'featured' | 'slug' | 'tag'>[]
items: Pick<TNewsDetail, 'title' | 'content' | 'featured' | 'slug' | 'tags'>[]
}
export type TNewsDetail = {
@@ -12,5 +12,6 @@ export type TNewsDetail = {
author: string
date: Date
slug: string
tag?: Array<string>
tags?: Array<string>
categories?: Array<string>
}