import {
Document,
Section,
H1,
Paragraph,
PageNumber,
} from "@cordel/react-docx";
const Report = () => (
<Document styles={{ defaultFont: { name: "Calibri", size: 11 } }}>
<Section
margins={{
top: "1in",
bottom: "1in",
left: "1.25in",
right: "1in",
header: "0.5in",
footer: "0.5in",
}}
pageSize={{ width: "8.5in", height: "11in" }}
>
<Section.Header>
<Paragraph className="text-right text-gray-500 text-sm">
Quarterly Report (Q4 2024)
</Paragraph>
</Section.Header>
<Section.Footer>
<Paragraph className="text-center text-gray-400 text-xs">
Confidential (Page <PageNumber type="current" />)
</Paragraph>
</Section.Footer>
<H1>Quarterly Report</H1>
<Paragraph>Content goes here...</Paragraph>
</Section>
</Document>
);