import {
render,
Document,
Section,
H1,
H2,
Paragraph,
Text,
PageNumber,
} from "@cordel/react-docx";
const Report = () => (
<Document>
<Section
margins={{
top: "1in",
bottom: "1in",
left: "1.25in",
right: "1in",
header: "0.5in",
footer: "0.5in",
}}
>
<Section.Header>
<Paragraph className="text-right text-sm text-gray-500">
<Text className="font-bold">ACME Corp</Text> - Q4 Report
</Paragraph>
</Section.Header>
<Section.Footer>
<Paragraph className="text-center text-xs text-gray-400">
Confidential | Page <PageNumber /> of <PageNumber type="total" />
</Paragraph>
</Section.Footer>
<H1>Quarterly Report</H1>
<Paragraph>
This report summarizes Q4 2024 performance...
</Paragraph>
<H2>Financial Highlights</H2>
<Paragraph>
Revenue increased by 15% compared to Q3...
</Paragraph>
</Section>
</Document>
);
await render(<Report />, "./report.docx");