aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-05-24 22:12:19 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-05-24 22:12:19 +0200
commit459235faf58dd5ba8b7809e7c0fe86c740f4fbf7 (patch)
treeed0667e1b8cf053e335d43e02a70b1af142e8f86 /src/app/page.tsx
parentb7be02e2c55ff40cc82a1c2038c315192eccfbe8 (diff)
downloadinvoice-459235faf58dd5ba8b7809e7c0fe86c740f4fbf7.tar.gz
invoice-459235faf58dd5ba8b7809e7c0fe86c740f4fbf7.zip
feat: new favicon and title
Diffstat (limited to 'src/app/page.tsx')
-rw-r--r--src/app/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 192a102..4437cc6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,7 +3,7 @@ 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>
+ <h1 className="text-xl font-bold">🧾 Free Invoice Generator</h1>
<InvoiceGenerator />
</main>
);