feat: Tweak links

This commit is contained in:
Sidharth Vinod
2025-03-13 15:18:38 -07:00
parent f16180ec59
commit 6a55d67c4e
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -14,9 +14,9 @@
import SunIcon from '~icons/material-symbols/sunny-rounded';
const menuItems = [
{ label: 'New Diagram', icon: AddIcon, href: '/' },
{ label: 'Home', icon: HomeIcon, href: '/' },
{ label: 'Docs', icon: BookIcon, href: '/docs' },
{ label: 'Help', icon: HelpIcon, href: '/pricing' }
{ label: 'Home', icon: HomeIcon, href: 'https://mermaid.js.org/' },
{ label: 'Docs', icon: BookIcon, href: 'https://mermaid.js.org/intro/' },
{ label: 'Help', icon: HelpIcon, href: 'https://discord.gg/sKeNQX4Wtj' }
];
</script>