From a92ee0f149eab20382803c5f3ce5d0c1026737f7 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Thu, 5 Aug 2021 14:02:59 +0200 Subject: [PATCH 1/2] renamed integrations to apps --- components/Shell.tsx | 2 +- pages/integrations/index.tsx | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/components/Shell.tsx b/components/Shell.tsx index 480195e559..3edf9206b3 100644 --- a/components/Shell.tsx +++ b/components/Shell.tsx @@ -43,7 +43,7 @@ export default function Shell(props) { current: router.pathname.startsWith("/availability"), }, { - name: "Integrations", + name: "App Store", href: "/integrations", icon: PuzzleIcon, current: router.pathname.startsWith("/integrations"), diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx index dca940c4c6..a71bfb48f5 100644 --- a/pages/integrations/index.tsx +++ b/pages/integrations/index.tsx @@ -93,12 +93,12 @@ export default function Home({ integrations }) { return (
- Integrations | Calendso + App Store | Calendso - Add new integration + Connect a new App }>
@@ -168,11 +168,11 @@ export default function Home({ integrations }) {

- You don't have any integrations added. + You don't have any connected apps.

- You currently do not have any integrations set up. Add your first integration to get + You currently do not have any apps connected. Connect your first app to get started.

@@ -181,7 +181,7 @@ export default function Home({ integrations }) { onClick={toggleAddModal} className="font-medium text-neutral-900 hover:text-neutral-500"> {" "} - Add your first integration + Connect your first app
@@ -229,10 +229,10 @@ export default function Home({ integrations }) {
-

Link a new integration to your account.

+

Connect a new app to your account.

From 6ca094f4b20f6b986700d61fa0422f7ed082f76c Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Thu, 5 Aug 2021 14:13:34 +0200 Subject: [PATCH 2/2] added launch your own app panel to app store --- pages/integrations/index.tsx | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx index a71bfb48f5..feb1065fba 100644 --- a/pages/integrations/index.tsx +++ b/pages/integrations/index.tsx @@ -109,7 +109,7 @@ export default function Home({ integrations }) { Connect a new App }> -
+
{integrations.filter((ig) => ig.credential).length !== 0 ? (
    {integrations @@ -168,12 +168,11 @@ export default function Home({ integrations }) {

- You don't have any connected apps. + You don't have any apps connected.

- You currently do not have any apps connected. Connect your first app to get - started. + You currently do not have any apps connected. Connect your first app to get started.

@@ -276,7 +275,7 @@ export default function Home({ integrations }) {
)} -
+

Select calendars

@@ -386,6 +385,20 @@ export default function Home({ integrations }) {
)} + +
+
+

Launch your own App

+
+

If you want to add your own App here, get in touch with us.

+
+ +
+
);