mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-09-23 19:39:04 +02:00
18 lines
384 B
TypeScript
18 lines
384 B
TypeScript
export interface SharedProps {
|
|
logoURL: string;
|
|
appName: string;
|
|
appURL: string;
|
|
}
|
|
|
|
export const sharedPreviewProps: SharedProps = {
|
|
logoURL: "https://pocket-id.org/img/logo.png",
|
|
appName: "Pocket ID",
|
|
appURL: "https://id.example.com",
|
|
};
|
|
|
|
export const sharedTemplateProps: SharedProps = {
|
|
logoURL: "{{.LogoURL}}",
|
|
appName: "{{.AppName}}",
|
|
appURL: "{{.AppURL}}",
|
|
};
|