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/components/header.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/header.tsx (limited to 'src/components/header.tsx') diff --git a/src/components/header.tsx b/src/components/header.tsx new file mode 100644 index 0000000..d54d957 --- /dev/null +++ b/src/components/header.tsx @@ -0,0 +1,21 @@ +import Link from 'next/link'; + +export const Header = () => { + return ( +
+
+ + 🧾 Free Invoice Generator + +
    +
  • + Blog +
  • +
  • + Help +
  • +
+
+
+ ); +}; -- cgit v1.3.1