renamed integrations to apps
This commit is contained in:
parent
0572d5653e
commit
a92ee0f149
2 changed files with 9 additions and 9 deletions
|
@ -43,7 +43,7 @@ export default function Shell(props) {
|
||||||
current: router.pathname.startsWith("/availability"),
|
current: router.pathname.startsWith("/availability"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Integrations",
|
name: "App Store",
|
||||||
href: "/integrations",
|
href: "/integrations",
|
||||||
icon: PuzzleIcon,
|
icon: PuzzleIcon,
|
||||||
current: router.pathname.startsWith("/integrations"),
|
current: router.pathname.startsWith("/integrations"),
|
||||||
|
|
|
@ -93,12 +93,12 @@ export default function Home({ integrations }) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Head>
|
<Head>
|
||||||
<title>Integrations | Calendso</title>
|
<title>App Store | Calendso</title>
|
||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<Shell
|
<Shell
|
||||||
heading="Integrations"
|
heading="App Store"
|
||||||
subtitle="Connect your favourite apps."
|
subtitle="Connect your favourite apps."
|
||||||
CTA={
|
CTA={
|
||||||
<button
|
<button
|
||||||
|
@ -106,7 +106,7 @@ export default function Home({ integrations }) {
|
||||||
type="button"
|
type="button"
|
||||||
className="flex justify-center py-2 px-4 border border-transparent rounded-sm shadow-sm text-sm font-medium text-white bg-neutral-900 hover:bg-neutral-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-900">
|
className="flex justify-center py-2 px-4 border border-transparent rounded-sm shadow-sm text-sm font-medium text-white bg-neutral-900 hover:bg-neutral-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-900">
|
||||||
<PlusIcon className="w-5 h-5 mr-1" />
|
<PlusIcon className="w-5 h-5 mr-1" />
|
||||||
Add new integration
|
Connect a new App
|
||||||
</button>
|
</button>
|
||||||
}>
|
}>
|
||||||
<div className="bg-white shadow overflow-hidden rounded-sm mb-8">
|
<div className="bg-white shadow overflow-hidden rounded-sm mb-8">
|
||||||
|
@ -168,11 +168,11 @@ export default function Home({ integrations }) {
|
||||||
</div>
|
</div>
|
||||||
<div className="py-5 sm:p-6">
|
<div className="py-5 sm:p-6">
|
||||||
<h3 className="text-lg leading-6 font-medium text-gray-900">
|
<h3 className="text-lg leading-6 font-medium text-gray-900">
|
||||||
You don't have any integrations added.
|
You don't have any connected apps.
|
||||||
</h3>
|
</h3>
|
||||||
<div className="mt-2 text-sm text-gray-500">
|
<div className="mt-2 text-sm text-gray-500">
|
||||||
<p>
|
<p>
|
||||||
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.
|
started.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -181,7 +181,7 @@ export default function Home({ integrations }) {
|
||||||
onClick={toggleAddModal}
|
onClick={toggleAddModal}
|
||||||
className="font-medium text-neutral-900 hover:text-neutral-500">
|
className="font-medium text-neutral-900 hover:text-neutral-500">
|
||||||
{" "}
|
{" "}
|
||||||
Add your first integration <span aria-hidden="true">→</span>
|
Connect your first app <span aria-hidden="true">→</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -229,10 +229,10 @@ export default function Home({ integrations }) {
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
<div className="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
||||||
<h3 className="text-lg leading-6 font-medium text-gray-900" id="modal-title">
|
<h3 className="text-lg leading-6 font-medium text-gray-900" id="modal-title">
|
||||||
Add a new integration
|
Connect a new App
|
||||||
</h3>
|
</h3>
|
||||||
<div>
|
<div>
|
||||||
<p className="text-sm text-gray-400">Link a new integration to your account.</p>
|
<p className="text-sm text-gray-400">Connect a new app to your account.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue