import htmlParse from 'html-react-parser' import { Breadcrumb } from '~/components/ui/breadcrumb' import { Card } from '~/components/ui/card' import { CarouselSection } from '~/components/ui/carousel-section' import { IconsSocial } from '~/components/ui/social-share' import { BERITA } from '~/data/contents' import { CONTENT } from './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}
{htmlParse(content)}

Share this post

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

{author}

Job title, Company name

) }