Files
poyraz-portfolio/data/site-settings.ts
T

18 lines
372 B
TypeScript
Raw 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: string;
actionLabel: string;
actionHref: string;
};
export const ENABLE_NEKO_FOLLOWER = true;
export const ANNOUNCEMENT_ITEMS: AnnouncementItem[] = [
{
id: "main-announcement",
text: 'Yeni Projem "Neta" Yayında!',
actionLabel: "İncele ->",
actionHref: "https://www.takeneta.com",
},
];