2023-07-25 15:54:17 +08:00
|
|
|
import { buildUrl } from '@/utils/url';
|
|
|
|
|
2023-02-27 10:15:55 +08:00
|
|
|
export const discordLink = 'https://discord.gg/UEPaF3j5e6';
|
2023-08-15 16:44:33 +08:00
|
|
|
export const githubOrgLink = 'https://github.com/logto-io';
|
2023-02-27 10:15:55 +08:00
|
|
|
export const githubLink = 'https://github.com/logto-io/logto';
|
|
|
|
export const githubIssuesLink = 'https://github.com/logto-io/logto/issues';
|
2023-05-17 16:17:00 +08:00
|
|
|
export const contactEmail = 'contact@logto.io';
|
|
|
|
export const contactEmailLink = `mailto:${contactEmail}`;
|
2023-07-25 15:54:17 +08:00
|
|
|
export const reservationLink = buildUrl('https://calendly.com/logto/30min', {
|
|
|
|
// Note: month format is YYYY-MM
|
|
|
|
month: new Date().toISOString().slice(0, 7),
|
|
|
|
});
|