18d697436c
* add new rainbow app and metadata * add rainbowkit components * add rainbow to event-type form * create wallet connection ui * verify signature when event is booked * extract rainbow logic to app-store * fix issues, dynamic import, theming * skeleton, better api logic * add gate logic to /[user]/book * Fixes package.json * Update yarn.lock * Type fixes Co-authored-by: zomars <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import config from "./config.json";
|
|
|
|
export const metadata = {
|
|
category: "other",
|
|
...config,
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|