-
Notifications
You must be signed in to change notification settings - Fork 4
/
app-config.ts
26 lines (23 loc) · 891 Bytes
/
app-config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export const applicationName = "ReadiumX";
export const afterLoginUrl = "/";
export const siteConfig = {
name: `${applicationName} - Read and Manage Premium Medium Articles for Free`,
short_name: applicationName,
description:
"An open source tool that provides access to premium Medium articles without the paywall, allowing you to bookmark, and manage your reading experience across any device.",
url: "https://readiumx.com",
ogImage: "https://readiumx.com/web-shot.png",
links: {
twitter: "https://twitter.com/jal_eelll",
github: "https://github.com/JaleelB/readium-x",
},
creator: {
name: "Jaleel Bennett",
twitter: "https://twitter.com/jal_eelll",
twitterId: "@jal_eelll",
github: "https://github.com/JaleelB",
website: "https://jaleelbennett.com",
mail: "[email protected]",
},
};
export type SiteConfig = typeof siteConfig;