2023-07-25 02:54:17 -05:00
|
|
|
import { buildUrl } from '@/utils/url';
|
|
|
|
|
2023-02-26 21:15:55 -05:00
|
|
|
export const discordLink = 'https://discord.gg/UEPaF3j5e6';
|
2023-08-15 03:44:33 -05:00
|
|
|
export const githubOrgLink = 'https://github.com/logto-io';
|
2023-02-26 21:15:55 -05:00
|
|
|
export const githubLink = 'https://github.com/logto-io/logto';
|
|
|
|
export const githubIssuesLink = 'https://github.com/logto-io/logto/issues';
|
2023-05-17 03:17:00 -05:00
|
|
|
export const contactEmail = 'contact@logto.io';
|
|
|
|
export const contactEmailLink = `mailto:${contactEmail}`;
|
2023-07-25 02:54:17 -05:00
|
|
|
export const reservationLink = buildUrl('https://calendly.com/logto/30min', {
|
|
|
|
// Note: month format is YYYY-MM
|
|
|
|
month: new Date().toISOString().slice(0, 7),
|
|
|
|
});
|
2023-11-06 02:45:23 -05:00
|
|
|
export const trustAndSecurityLink = 'https://logto.io/trust-and-security';
|
2023-11-16 00:34:13 -05:00
|
|
|
|
|
|
|
/** Docs link */
|
|
|
|
export const envTagsFeatureLink = '/docs/recipes/environment-tags';
|