16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
export type AnnouncementItem = {
|
|
id: string;
|
|
text: string;
|
|
actionLabel: string;
|
|
actionHref: string;
|
|
};
|
|
|
|
export const ANNOUNCEMENT_ITEMS: AnnouncementItem[] = [
|
|
{
|
|
id: "main-announcement",
|
|
text: "ASLJKDAKJSDLKASDALŞSD",
|
|
actionLabel: "İncele ->",
|
|
actionHref: "https://ui.poyrazavsever.com"
|
|
}
|
|
];
|