import Link from 'next/link' import { BlogPost } from '@/types/blog' interface FeaturedPostHeroProps { post: BlogPost } export default function FeaturedPostHero({ post }: FeaturedPostHeroProps) { const formattedDate = new Date(post.date).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }) return (
{/* Newspaper-style header */}
Featured Article
{/* Main content - spans 2 columns on large screens */}
{/* Newspaper-style kicker */}
{post.tags?.[0] || 'Contextual AI'}
{/* Large headline */}

{post.title}

{/* Subhead/description */}

{post.description}

{/* Byline and meta */}
{post.author?.name?.charAt(0) || 'C'}

By {post.author?.name || 'CHORUS Team'}

{post.author?.role && (

{post.author.role}

)}
{post.readingTime} min read
{/* Sidebar - article highlights */}

In This Article

  • Key insights into AI orchestration
  • Real-world implementation strategies
  • Future implications for the industry
{/* Tags */}

Topics

{post.tags?.slice(0, 4).map((tag) => ( {tag} ))}
) }