import Breadcrumb from '~/components/ui/breadcrumb' import { Card } from '~/components/ui/card' import { Carousel } from '~/components/ui/carousel' import IconsSocial from '~/components/ui/icons-social' // eslint-disable-next-line no-restricted-imports import { BERITA, CONTENT } from '~/pages/news-detail/data' export const NewsDetailPage = () => { const { title, content, featured, slug, author, date, tags } = CONTENT return (

{title}

{/* next planing create component for this section */}
{title}

{author}

{date.toJSON().slice(0, 10)} . 5 min read{' '}

{/* end next planing create component for this section */}
{title}

Share this post

{tags?.map((tag) => ( {tag} ))}
{title}

{author}

Job title, Company name

) }