feat: update footer menu

This commit is contained in:
Victor Gerbrands 2023-05-11 16:19:49 +02:00
parent 0d4c7e33fc
commit cd2db81bbb

View File

@ -390,9 +390,9 @@ export async function getMenu(menu: string): Promise<any[]> {
if (menu === 'next-js-frontend-footer-menu') {
return [
{ title: 'About', path: 'https://medusajs.com/' },
{ title: 'Docs', path: 'https://docs.medusajs.com/' },
{ title: 'Blog', path: 'https://medusajs.com/blog' }
{ title: 'About Medusa', path: 'https://medusajs.com/' },
{ title: 'Medusa Docs', path: 'https://docs.medusajs.com/' },
{ title: 'Medusa Blog', path: 'https://medusajs.com/blog' }
];
}