Skip to content

Commit 3c403a2

Browse files
committed
feat: add blog link to layout configuration
- Introduce a new blog link with an icon for better user navigation. - Enhance layout options to include the blog section for improved content access.
1 parent 7350681 commit 3c403a2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

app/layout.config.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
HomeIcon,
66
LayoutDashboardIcon,
77
MailIcon,
8+
NewspaperIcon,
89
PuzzleIcon,
910
} from "lucide-react";
1011
import Image from "next/image";
@@ -53,6 +54,13 @@ export const baseOptions = (locale: string): BaseLayoutProps => ({
5354
icon: <LayoutDashboardIcon />,
5455
url: "https://multipost.app/dashboard",
5556
},
57+
{
58+
type: 'icon',
59+
label: 'Blog Link',
60+
text: 'Blog',
61+
icon: <NewspaperIcon />,
62+
url: 'https://blog.multipost.app',
63+
},
5664
{
5765
type: "icon",
5866
label: "Contact Us Link",

0 commit comments

Comments
 (0)