片尾卡
🌐 Endcard
在结尾卡片中,你可以添加关注的呼吁,以及你社交媒体资料或其他网站的链接。 这可以在config/endcard.ts文件中通过将你的信息添加为Channel对象来设置。
🌐 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.
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,
},
};