cal/packages/app-store/tandemvideo/_metadata.ts
Hariom Balhara 51695ee79d
chore/AppStore: Remove deprecated imageSrc and make the paths relative in logo (#8479)
* Remove depreated imageSrc and make the paths relative in logo

* Do logo replacement at a single place

* Make logo relative at other places

* Fix campfire page not working in dev environment
2023-04-26 12:03:34 +01:00

30 lines
608 B
TypeScript

import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Tandem Video",
description: _package.description,
type: "tandem_video",
title: "Tandem Video",
variant: "conferencing",
categories: ["video"],
slug: "tandem",
category: "video",
logo: "icon.svg",
publisher: "",
url: "",
isGlobal: false,
email: "help@cal.com",
appData: {
location: {
linkType: "dynamic",
type: "integrations:tandem",
label: "Tandem Video",
},
},
dirName: "tandemvideo",
} as AppMeta;
export default metadata;