18 lines
374 B
TypeScript
18 lines
374 B
TypeScript
|
export interface MenuItem {
|
||
|
label: string;
|
||
|
link: string;
|
||
|
icon?: string;
|
||
|
}
|
||
|
|
||
|
export const secondaryMenu: MenuItem[] = [
|
||
|
{
|
||
|
label: "Discord",
|
||
|
link: "https://discord.gg/mS5QvKykvv",
|
||
|
icon: "discord fab",
|
||
|
},
|
||
|
{
|
||
|
label: "GitHub",
|
||
|
link: "https://github.com/cogentapps/chat-with-gpt",
|
||
|
icon: "github fab",
|
||
|
},
|
||
|
];
|