Skip to content

Commit

Permalink
feat: add creators landing to navbar (#507)
Browse files Browse the repository at this point in the history
* feat: add creators landing to navbar

* fix: prettier

* feat: remove hire title in create's Navbar

* feat: switch columns in Create Navbar

* feat: add empty title

* feat: add empty title
  • Loading branch information
braianj authored Feb 2, 2024
1 parent c26844d commit c96006f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 16 deletions.
32 changes: 19 additions & 13 deletions src/components/Navbar/Navbar.defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,24 @@ export const navbarSubmenu = {
]
},
create: {
column1Title: 'PUBLISH',
column1Title: ' ',
column1: [
{
title: 'Create in Decentraland',
description: 'Discover all the benefits and possibilities',
url: config.get('LANDING_CREATORS_URL'),
eventTrackingName: 'landing_creators'
},
{
title: 'Decentraland Studios',
description: 'Hire pros to transform your ideas to reality',
url: config.get('STUDIOS_URL'),
eventTrackingName: 'studios',
isExternal: true
}
],
column2Title: 'PUBLISH',
column2: [
{
title: 'Wearables & Emotes',
description: 'Publish & manage Marketplace collections',
Expand All @@ -70,8 +86,8 @@ export const navbarSubmenu = {
eventTrackingName: 'builder_scenes'
}
],
column2Title: 'MANAGE',
column2: [
column3Title: 'MANAGE',
column3: [
{
title: 'My NAMEs',
description: 'Create & manage NAMEs',
Expand All @@ -90,16 +106,6 @@ export const navbarSubmenu = {
url: config.get('BUILDER_LAND_URL'),
eventTrackingName: 'builder_land'
}
],
column3Title: 'HIRE',
column3: [
{
title: 'Decentraland Studios',
description: 'Hire pros to transform your ideas to reality',
url: config.get('STUDIOS_URL'),
eventTrackingName: 'studios',
isExternal: true
}
]
},
explore: {
Expand Down
3 changes: 2 additions & 1 deletion src/config/env/dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
"DOCS_CREATORS_URL": "https://docs.decentraland.org/creator/",
"DOCS_CONTRIBUTOR_URL": "https://docs.decentraland.org/contributor/",
"DOCS_DAO_URL": "https://docs.decentraland.org/player/general/dao/overview/what-is-the-dao/",
"BLOG_URL": "https://decentraland.zone/blog/"
"BLOG_URL": "https://decentraland.zone/blog/",
"LANDING_CREATORS_URL": "https://decentraland.zone/create/"
}
3 changes: 2 additions & 1 deletion src/config/env/prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
"DOCS_CREATORS_URL": "https://docs.decentraland.org/creator/",
"DOCS_CONTRIBUTOR_URL": "https://docs.decentraland.org/contributor/",
"DOCS_DAO_URL": "https://docs.decentraland.org/player/general/dao/overview/what-is-the-dao/",
"BLOG_URL": "https://decentraland.org/blog/"
"BLOG_URL": "https://decentraland.org/blog/",
"LANDING_CREATORS_URL": "https://decentraland.org/create/"
}
3 changes: 2 additions & 1 deletion src/config/env/stg.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
"DOCS_CREATORS_URL": "https://docs.decentraland.org/creator/",
"DOCS_CONTRIBUTOR_URL": "https://docs.decentraland.org/contributor/",
"DOCS_DAO_URL": "https://docs.decentraland.org/player/general/dao/overview/what-is-the-dao/",
"BLOG_URL": "https://decentraland.today/blog/"
"BLOG_URL": "https://decentraland.today/blog/",
"LANDING_CREATORS_URL": "https://decentraland.today/create/"
}

0 comments on commit c96006f

Please sign in to comment.