Skip to main content

Endcard

In the endcard you can add a call to follow, as well as links to your social media profiles or other websites. This can be setup in the config/endcard.ts file by adding your information as Channel object.

tsx
export const channels: {
[key in Channel]: ChannelConfig & {
isLinkedInBusinessPage: boolean;
};
} = {
jonny: {
instagram: null,
linkedin: "Jonny Burger",
x: "@JNYBGR",
youtube: "/JonnyBurger",
discord: null,
isLinkedInBusinessPage: false,
},
remotion: {
instagram: "@remotion",
linkedin: "Remotion",
x: "@remotion",
youtube: "@remotion_dev",
discord: null,
isLinkedInBusinessPage: true,
},
};
tsx
export const channels: {
[key in Channel]: ChannelConfig & {
isLinkedInBusinessPage: boolean;
};
} = {
jonny: {
instagram: null,
linkedin: "Jonny Burger",
x: "@JNYBGR",
youtube: "/JonnyBurger",
discord: null,
isLinkedInBusinessPage: false,
},
remotion: {
instagram: "@remotion",
linkedin: "Remotion",
x: "@remotion",
youtube: "@remotion_dev",
discord: null,
isLinkedInBusinessPage: true,
},
};