Files

30 lines
537 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export type AnnouncementItem = {
id: string;
text: {
tr: string;
en: string;
};
actionLabel: {
tr: string;
en: string;
};
actionHref: string;
};
export const ENABLE_NEKO_FOLLOWER = true;
export const ANNOUNCEMENT_ITEMS: AnnouncementItem[] = [
{
id: "main-announcement",
text: {
tr: 'Yeni Projem "Neta" Yayında!',
en: 'My New Project "Neta" is Live!',
},
actionLabel: {
tr: "İncele ->",
en: "Explore ->",
},
actionHref: "https://www.takeneta.com",
},
];