We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c1399 commit cef2fdeCopy full SHA for cef2fde
src/app/(home)/layout.tsx
@@ -2,17 +2,24 @@ import type { ReactNode } from "react"
2
import { HomeLayout } from "fumadocs-ui/layouts/home"
3
import { baseOptions } from "@/app/layout.config"
4
import { SiDiscord } from "@icons-pack/react-simple-icons"
5
+import { RssIcon } from "lucide-react"
6
7
export default function Layout({ children }: { children: ReactNode }) {
8
return (
9
<HomeLayout
10
{...baseOptions}
11
links={[
12
+ {
13
+ type: "icon",
14
+ icon: <RssIcon/>,
15
+ text: "Blog",
16
+ url: "/blog"
17
+ },
18
{
19
type: "icon",
20
icon: <SiDiscord />,
21
text: "Discord",
- url: "https://thenextlvl.net/discord",
22
+ url: "/discord",
23
},
24
]}
25
>
0 commit comments