diff --git a/app/dashboard/templates/shared/menu.html b/app/dashboard/templates/shared/menu.html
index fecb7e22cdc..eaa96a251eb 100644
--- a/app/dashboard/templates/shared/menu.html
+++ b/app/dashboard/templates/shared/menu.html
@@ -272,7 +272,7 @@
-
- {% trans "Explore Grants" %}
+ {% trans "Explore Grants" %}
-
{% trans "Create Grant" %}
diff --git a/cypress/integration/landing_page/test_products_menu.js b/cypress/integration/landing_page/test_products_menu.js
new file mode 100644
index 00000000000..7af6d2a6383
--- /dev/null
+++ b/cypress/integration/landing_page/test_products_menu.js
@@ -0,0 +1,25 @@
+describe('Products menu', () => {
+ before(() => {
+ cy.setupMetamask();
+ });
+
+ beforeEach(() => {
+ cy.impersonateUser();
+ });
+
+ afterEach(() => {
+ cy.logout();
+ });
+
+ after(() => {
+ cy.clearWindows();
+ });
+
+ it('navigates to the grants explorer when \'Explore Grants\' is selected', () => {
+ cy.get('#dropdownProducts').trigger('mouseenter');
+ cy.contains('Grants Crowdfunding for Open Source').trigger('mouseenter');
+ cy.contains('Explore Grants').click();
+
+ cy.url().should('contain', 'grants/explorer');
+ });
+});
\ No newline at end of file