Skip to content

Commit e47be71

Browse files
committed
feat(layout): add Blog icon link to layout configuration
1 parent eac9b96 commit e47be71

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/app/layout.config.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"
22
import Image from "next/image"
33
import { SiDiscord } from "@icons-pack/react-simple-icons"
4+
import { RssIcon } from "lucide-react"
45
/**
56
* Shared layout configurations
67
*
@@ -18,6 +19,13 @@ export const baseOptions: BaseLayoutProps = {
1819
),
1920
},
2021
links: [
22+
{
23+
type: "icon",
24+
label: "Blog",
25+
icon: <RssIcon />,
26+
text: "Blog",
27+
url: "/blog",
28+
},
2129
{
2230
type: "icon",
2331
label: "Discord",

0 commit comments

Comments
 (0)