diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-06 19:51:23 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-06 19:51:23 +0200 |
| commit | 31c60e3b4214c385ac8316597af53a525b55ca94 (patch) | |
| tree | 3b7476a3c36b6408594989f3de18c90f5e4673f8 /src/app/layout.tsx | |
| parent | c2d33aa0c52bc2bee61b0195c30e37f81cafa643 (diff) | |
| download | invoice-31c60e3b4214c385ac8316597af53a525b55ca94.tar.gz invoice-31c60e3b4214c385ac8316597af53a525b55ca94.zip | |
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
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8630def..df2225e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from 'next'; import { Geist, Geist_Mono } from 'next/font/google'; import './globals.css'; +import { Header } from '@/components/header'; const geistSans = Geist({ variable: '--font-geist-sans', @@ -27,6 +28,7 @@ export default function RootLayout({ <body className={`${geistSans.variable} ${geistMono.variable} antialiased`} > + <Header /> {children} </body> </html> |
