aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
blob: 1cf5531d87798e1f83954cea3b83a5f77083c710 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { InvoiceGenerator } from '@/components/invoice-generator';

export default function Home() {
  return (
    <main className="pt-10">
      <section className="mb-20 flex flex-col items-center">
        <InvoiceGenerator />
      </section>
    </main>
  );
}