From 31c60e3b4214c385ac8316597af53a525b55ca94 Mon Sep 17 00:00:00 2001 From: mihna123 Date: Sat, 6 Jun 2026 19:51:23 +0200 Subject: feat: update the layout and add more pages - Add a proper header to the layout - Add a help page with instructions how to generate an invoice - Add an empty blog page that will eventually be filled with blogs --- src/app/help/HelpPage.1.tsx | 0 src/app/help/HelpPage.tsx | 0 src/app/help/page.tsx | 87 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 src/app/help/HelpPage.1.tsx create mode 100644 src/app/help/HelpPage.tsx create mode 100644 src/app/help/page.tsx (limited to 'src/app/help') diff --git a/src/app/help/HelpPage.1.tsx b/src/app/help/HelpPage.1.tsx new file mode 100644 index 0000000..e69de29 diff --git a/src/app/help/HelpPage.tsx b/src/app/help/HelpPage.tsx new file mode 100644 index 0000000..e69de29 diff --git a/src/app/help/page.tsx b/src/app/help/page.tsx new file mode 100644 index 0000000..9df8977 --- /dev/null +++ b/src/app/help/page.tsx @@ -0,0 +1,87 @@ +import { Button } from '@/components/ui/button'; +import { cn } from '@/utils/cn'; +import Link from 'next/link'; + +export default function HelpPage() { + return ( +
+
+

Help

+

+ Free Invoice Generator provides a simple to use interface for + generating pdf incoices that look professional. Perfect for small to + medium freelancers and entrepreneurs. +

+

How to create an invoice?

+

+ In order to create an invoice fill out the{' '} + + inovice form + + : +

+
    +
  1. + 1. Enter your full name into "Who is this from?" + field. +
  2. +
  3. + 2. Enter the entity you are billing in the "Who is this + for?" field. +
  4. +
  5. + 3. Pick todays date in the "Date" field. +
  6. +
  7. + 4. Start filling out your invoice items. Enter the{' '} + description of the paid service, quantity and the{' '} + rate. Amount will be calculated automatically. +
  8. +
  9. + 5. When you want to add another item, press the{' '} + {' '} + button. New line item will be added to the list. +
  10. +
  11. + 6. If you want to remove a line item, hover over it to reveal the + "X" button on the right, after the amount value. + Clicking on it will remove the line item. +
  12. +
  13. + 7. If you are satisfied with line items, you can head over to + "Notes" and "Terms" fields. + Content from these fields will be printed after line items in the + final pdf. +
  14. +
  15. + 8. Press the{' '} + {' '} + button to generate and download the invoice pdf. If you are not + satisfied with the result you can go back and change any values you + want, then download again. +
  16. +
+

Contact

+

+ If you have any problems or questions make sure to contact the main + developer at{' '} + + mihailonvojinovic@gmail.com + + . We usually respond in a day. +

+
+
+ ); +} -- cgit v1.3.1