Skip to content

Commit 8f2b2ca

Browse files
fix: eliza docs links (#713)
## Why? Clear and short explanation here. ## How? - Done A (replace with a breakdown of the steps) - Done B - Done C ## Tickets? - [Ticket 1](the-ticket-url-here) - [Ticket 2](the-ticket-url-here) - [Ticket 3](the-ticket-url-here) ## Contribution checklist? - [ ] The commit messages are detailed - [ ] The `build` command runs locally - [ ] Assets or static content are linked and stored in the project - [ ] Document filename is named after the slug - [ ] You've reviewed spelling using a grammar checker - [ ] For documentation, guides or references, you've tested the commands and steps - [ ] You've done enough research before writing ## Security checklist? - [ ] Sensitive data has been identified and is being protected properly - [ ] Injection has been prevented (parameterized queries, no eval or system calls) - [ ] The Components are escaping output (to prevent XSS) ## References? Optionally, provide references such as links ## Preview? Optionally, provide the preview url here
1 parent e433f84 commit 8f2b2ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Footer/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default {
7777
product: [
7878
{
7979
text: 'AI agent hosting',
80-
url: elizaUrl,
80+
url: elizaUrl.concat('/docs/'),
8181
},
8282
{
8383
text: 'Web app hosting',

src/components/Navbar/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const navbarMenu: NavMenuItemRoot[] = [
3838
subMenu: [
3939
{
4040
label: 'AI agent hosting',
41-
url: elizaUrl,
41+
url: elizaUrl.concat('/docs/'),
4242
description: 'Build autonomous agents',
4343
icon: '/svg/robot.svg',
4444
},

0 commit comments

Comments
 (0)