import { Breadcrumb } from '~/components/ui/breadcrumb' import { Card } from '~/components/ui/card' import { Carousel } from '~/components/ui/carousel' import { IconsSocial } from '~/components/ui/social-share' import { BERITA, 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}

Share this post

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

{author}

Job title, Company name

) }