Skip to content

Commit cef2fde

Browse files
committed
chore: add Blog to home links
1 parent 09c1399 commit cef2fde

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/app/(home)/layout.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@ import type { ReactNode } from "react"
22
import { HomeLayout } from "fumadocs-ui/layouts/home"
33
import { baseOptions } from "@/app/layout.config"
44
import { SiDiscord } from "@icons-pack/react-simple-icons"
5+
import { RssIcon } from "lucide-react"
56

67
export default function Layout({ children }: { children: ReactNode }) {
78
return (
89
<HomeLayout
910
{...baseOptions}
1011
links={[
12+
{
13+
type: "icon",
14+
icon: <RssIcon/>,
15+
text: "Blog",
16+
url: "/blog"
17+
},
1118
{
1219
type: "icon",
1320
icon: <SiDiscord />,
1421
text: "Discord",
15-
url: "https://thenextlvl.net/discord",
22+
url: "/discord",
1623
},
1724
]}
1825
>

0 commit comments

Comments
 (0)