Skip to content

Commit 69c22a0

Browse files
authored
Merge pull request #22 from vagxrth/feat/sidebar-icons
[REFACTOR]: update layout icons and links in layout.config.tsx
2 parents b229639 + 6405501 commit 69c22a0

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

apps/docs/app/layout.config.tsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
2-
import { Github, Home, Twitter } from 'lucide-react';
2+
import { MdSpaceDashboard } from "react-icons/md";
3+
import { FaGithub, FaXTwitter, FaDiscord } from "react-icons/fa6";
34
import { LogoContent } from '@/components/logo';
45
import { ThemeToggle } from '@/components/theme-toggle';
56

@@ -15,26 +16,26 @@ export const baseOptions: BaseLayoutProps = {
1516
text: 'Dashboard',
1617
url: 'https://app.databuddy.cc',
1718
external: true,
18-
icon: <Home />,
19+
icon: <MdSpaceDashboard />,
1920
},
2021
{
2122
text: 'GitHub',
2223
url: 'https://github.com/databuddy-analytics',
2324
external: true,
24-
icon: <Github />,
25+
icon: <FaGithub />,
2526
secondary: true,
2627
},
2728
{
2829
text: 'Discord',
2930
url: 'https://discord.gg/JTk7a38tCZ',
3031
external: true,
31-
// icon: <Discord />,
32+
icon: <FaDiscord />,
3233
},
3334
{
34-
text: 'Twitter',
35-
url: 'https://x.com/databuddyps',
35+
text: 'X (Twitter)',
36+
url: 'https://x.com/trydatabuddy',
3637
external: true,
37-
icon: <Twitter />,
38+
icon: <FaXTwitter />,
3839
}
3940
],
4041
};

0 commit comments

Comments
 (0)