From e4b6bc0d5e60a9888360a1a69c21143b8b88eaa6 Mon Sep 17 00:00:00 2001 From: BinarySoftware Date: Sun, 23 Jun 2024 19:50:24 +0200 Subject: [PATCH] Hide community from website. --- src/app/footer.tsx | 2 +- src/app/navigation.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/footer.tsx b/src/app/footer.tsx index 4cc1f07..e72a52e 100644 --- a/src/app/footer.tsx +++ b/src/app/footer.tsx @@ -3,7 +3,7 @@ import * as React from 'react' const navigation = { main: [ {name: 'Pricing', href: '#pricing'}, - {name: 'Community', href: 'https://discord.gg/NmqDddBV'}, + // {name: 'Community', href: 'https://discord.gg/NmqDddBV'}, {name: 'Feature Request', href: 'https://blinkfeed.featurebase.app/'}, {name: 'Privacy', href: 'privacy'}, ], diff --git a/src/app/navigation.tsx b/src/app/navigation.tsx index 7554dc7..b02eaf2 100644 --- a/src/app/navigation.tsx +++ b/src/app/navigation.tsx @@ -9,7 +9,7 @@ import React from 'react' const items = [ {name: 'Blinkfeed', href: '#'}, {name: 'Pricing', href: '#pricing'}, - {name: 'Community', href: 'https://discord.gg/NmqDddBV', target: '_blank'}, + // {name: 'Community', href: 'https://discord.gg/NmqDddBV', target: '_blank'}, {name: 'Feature Request', href: 'https://blinkfeed.featurebase.app', target: '_blank'}, ]