Skip to content

Commit eb03e0c

Browse files
authored
Adding app logos (#1077)
* Add Grain logo * Add Slack logo * Add other logos
1 parent 964708e commit eb03e0c

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

grain/mod.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ export type AppContext = FnContext<State, Manifest>;
2121
/**
2222
* @name Grain
2323
* @title Grain
24-
* @description A Deco app for interacting with the Grain API.
24+
* @description grain.com is an AI Notetaker for your meeting
25+
* @logo https://images.ctfassets.net/9haz2glq4wt0/36OjNsjfRZpaR1QtYtPucU/391ae8f9716fa000508b11583fcc9ebb/Grain_AI_Logo.png
2526
* @version 1.0.0
2627
*/
2728
export default function App(props: Props): App<Manifest, State> {

resend/mod.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ export interface State extends Props {
3131
apiWrite: ReturnType<typeof createHttpClient<ResendApi>>;
3232
}
3333
/**
34+
* @name Resend
3435
* @title Resend
35-
* @description app for sending emails using https://resend.com/
36-
* @logo https://raw.githubusercontent.com/deco-cx/apps/main/resend/logo.png
36+
* @description Send emails using resend.com
37+
* @logo https://mintlify.s3-us-west-1.amazonaws.com/resend/_generated/favicon/apple-touch-icon.png?v=3
3738
*/
3839
export default function App({
3940
apiKey,

slack/mod.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ export interface State extends Props {
2626
export type AppContext = FnContext<State, Manifest>;
2727

2828
/**
29-
* @name SLACK
29+
* @name Slack
3030
* @title Slack
31-
* @description A Deco app for interacting with Slack APIs with strongly typed responses
31+
* @description Send messages and interact with Slack channels
32+
* @logo https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/306_Slack_logo-512.png
3233
*/
3334
export default function App(props: Props): App<Manifest, State> {
3435
const slack = new SlackClient(

0 commit comments

Comments
 (0)