Skip to content

Commit c874cf4

Browse files
committed
update menu
1 parent 2c43cd7 commit c874cf4

File tree

1 file changed

+37
-19
lines changed

1 file changed

+37
-19
lines changed

components/Header/Menu/menu-items.js

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,30 @@ import IconDiscord from '../../../public/menu/icon-discord.svg';
2626
import IconDocs from '../../../public/menu/icon-docs.svg';
2727
import IconGithub from '../../../public/menu/icon-github.svg';
2828

29-
const PRODUCTS_ITEMS_1 = [
29+
const PLATFORM_MENU_ITEMS_1 = [
30+
31+
{
32+
title: 'Live Templates',
33+
image: IconBuildNew,
34+
url: '/live-templates',
35+
description: 'Tailor-made Templates to Keep Your Services Always Up-to-Date',
36+
},
37+
{
38+
title: 'Plugins',
39+
image: IconPlugins,
40+
url: '/extend-with-plugins',
41+
description: 'Customize Your Development with Amplication’s Plugins',
42+
},
3043
{
3144
title: 'Jovu',
3245
image: IconBackend,
3346
url: '/jovu--production-ready-ai-code-generation',
3447
description: 'From idea to production in minutes',
3548
},
49+
50+
];
51+
52+
const PRODUCTS_ITEMS_1 = [
3653
{
3754
title: 'Build new services',
3855
image: IconBuildNew,
@@ -45,10 +62,6 @@ const PRODUCTS_ITEMS_1 = [
4562
url: '/build-api-on-existing-db',
4663
description: 'Head start development using existing DB',
4764
},
48-
49-
];
50-
51-
const PRODUCTS_ITEMS_2 = [
5265
{
5366
title: 'Break the monolith',
5467
image: IconBTM,
@@ -61,17 +74,13 @@ const PRODUCTS_ITEMS_2 = [
6174
url: '/application-modernization',
6275
description: 'Transform and migrate legacy systems',
6376
},
64-
{
65-
title: 'Plugins',
66-
image: IconPlugins,
67-
url: '/plugins',
68-
description: 'Extend and customize your services',
69-
},
7077

7178
];
7279

7380

7481

82+
83+
7584
const CUSTOMERS_ITEMS_1 = [
7685
{
7786
title: 'IT Services',
@@ -109,10 +118,7 @@ const PRODUCT_MENU_ITEMS = [
109118
title: 'Products',
110119
menuItems: PRODUCTS_ITEMS_1,
111120
},
112-
{
113-
title: ' ',
114-
menuItems: PRODUCTS_ITEMS_2,
115-
}
121+
116122
]
117123

118124

@@ -125,6 +131,13 @@ const CUSTOMERS_MENU_ITEMS = [
125131
}
126132
]
127133

134+
const PLATFORM_MENU_ITEMS = [
135+
{
136+
menuItems: PLATFORM_MENU_ITEMS_1,
137+
},
138+
139+
]
140+
128141

129142

130143

@@ -225,13 +238,18 @@ export const LEFT_MENU_ITEMS = [
225238
export const RIGHT_MENU_ITEMS = [
226239

227240
{
228-
title: 'Product',
241+
title: 'Platform',
242+
align: "start",
243+
columns: PLATFORM_MENU_ITEMS,
244+
},
245+
{
246+
title: 'Solutions',
229247
align: "start",
230248
columns: PRODUCT_MENU_ITEMS,
231249
},
232250
{
233-
title: 'Enterprise',
234-
url: '/enterprise',
251+
title: 'Plugins',
252+
url: '/plugins',
235253
},
236254
{
237255
title: 'Pricing',
@@ -277,7 +295,7 @@ export const LOGIN_MENU_ITEM = {
277295
export const FOOTER_GROUPS = [
278296
{
279297
title: 'Product',
280-
items: [...PRODUCTS_ITEMS_1, ...PRODUCTS_ITEMS_2]
298+
items: [...PRODUCTS_ITEMS_1]
281299

282300
},
283301
{

0 commit comments

Comments
 (0)