/** * Hero Quote Component * * Full-viewport hero section with Jensen Huang quote. * Displays quote, attribution, and subtitle from content. */ import type { HeroContent } from '@/content/schemas/manifesto' import { MarketingShader } from './marketing-shader' interface HeroQuoteProps { content: HeroContent } export function HeroQuote({ content }: HeroQuoteProps) { return (
{/* Shader Background - zeer subtiel (opacity 0.02) */} {/* Op mobile: donkere fallback, op desktop: subtiele shader */} {/* Content Overlay */}
“{content.quote}”
{content.attribution} {content.attributionContext && ( )}

{content.subtitle}

) }