Added review

This commit is contained in:
Elio Struyf
2021-08-31 13:34:51 +02:00
parent 5329033b46
commit c9dd684451
+10 -2
View File
@@ -1,4 +1,4 @@
import { HeartIcon } from "@heroicons/react/outline";
import { HeartIcon, StarIcon } from "@heroicons/react/outline";
import React from "react";
import { Extension } from "./extension";
@@ -24,12 +24,20 @@ export const navigation = {
)
},
{
name: 'Sponsor us',
name: 'Become a sponsor',
title: 'Become a sponsor, and get mentioned',
href: Extension.sponsorLink,
icon: (props: any) => (
<HeartIcon {...props} />
)
},
{
name: 'Review',
title: 'Write a review on the marketplace',
href: Extension.reviewLink,
icon: (props: any) => (
<StarIcon {...props} />
)
}
]
};