Next.js Discord

Discord Forum

cant modify mobile links

Unanswered
Honey bee posted this in #help-forum
Open in Discord
Honey beeOP
#mobilenav Any help is much appreciated. I cant seem to update the mobile links ( navMenuItems) while the main nav works just fine. Here is my config/site.ts file:


import { ChatBubbleBottomCenterTextIcon } from "@heroicons/react/24/outline";

export type SiteConfig = typeof siteConfig;

export const siteConfig = {
name: "YourWebsiteName",
description: "YourWebsiteName - Your Demo Website Name Provider.",
navItems: [
{
label: "Docs",
href: "/docs",
},
{
label: "Support",
href: "https://support.website.cloud",
},
{
label: "Dashboard",
href: "https://dashboard.website.cloud/#/host",
},
{
label: "Billing",
href: "https://portal.website.design/p/login/gdttfhu45",
},
],
navMenuItems: [
{
label: "Docs",
href: "/docs",
},
{
label: "DemoLink",
href: "https://demolink.com",
},
],
links: {
github: "https://github.com/demo",
twitter: "https://twitter.com/demo",
docs: "https://website.cloud/docs",
},
};

1 Reply

siteConfig is a const