Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardgill committed Apr 2, 2024
1 parent 9cf9330 commit 38b4814
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/www/src/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const siteConfig: SiteConfig = {
url: "https://llm-ui.com",
ogImage: "https://llm-ui.com/og.jpg",
links: {
discord: "https://discord.gg/gSgpjMxyT9",
github: "https://github.com/llm-ui-kit/llm-ui",
},
};
2 changes: 1 addition & 1 deletion apps/www/src/layouts/MainLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const { title, description, mainClass } = Astro.props;
>
<CommandMenu client:load />
<a
href={siteConfig.links.github}
href={siteConfig.links.discord}
target="_blank"
rel="noreferrer"
aria-label="discord"
Expand Down
1 change: 1 addition & 0 deletions apps/www/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export type SiteConfig = {
ogImage: string;
links: {
github: string;
discord: string;
};
};

Expand Down

0 comments on commit 38b4814

Please sign in to comment.