> ## Documentation Index
> Fetch the complete documentation index at: https://changelog.pineway.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Product Updates

> The latest features and product improvements from Pineway

export const ContentBlock = ({title, date, contentAsParagraphs}) => {
  return <div className="flex flex-col gap-y-10">
      <article className="flex flex-col md:flex-row gap-6">
        <header className="flex flex-col gap-y-4 shrink-0 w-fit md:w-none">
          <h5 className="px-2 py-1 rounded-xl" style={{
    backgroundColor: '#ece9fe',
    color: '#875bf7'
  }}>
            {date || ''}
          </h5>
        </header>

        <div className="flex flex-col gap-y-4">
          <h3 className="mt-0">{title || ''}</h3>
          {contentAsParagraphs?.map((paragraph, index) => <p key={index}>{paragraph}</p>)}
        </div>
      </article>
    </div>;
};

<ContentBlock
  date="20 January, 2026"
  title="We are live"
  contentAsParagraphs={[
'We are getting ready for our beta launch! To prepare, we are adding...',
'a new paragraph for the sake of it. :)',
"We're live now, icymi!"
]}
/>

***

<ContentBlock
  date="15 January, 2026"
  title="Welcome to our pre-launch party!"
  contentAsParagraphs={[
'We are getting ready for our beta launch! To prepare, we are adding...',
'a new paragraph for the sake of it. :)',
]}
/>

***

<ContentBlock date="13 January, 2026" title="Welcome to our first changelog published!" />
