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

export default function Home() {
  return (
    <main className="space-y-4 p-2">
      <h1 className="text-xl">Free Invoice Generator</h1>
      <InvoiceGenerator />
    </main>
  );
}