feat(layout): load announcement bar content from site settings
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
export type AnnouncementItem = {
|
||||
id: string;
|
||||
text: string;
|
||||
actionLabel: string;
|
||||
actionHref: string;
|
||||
};
|
||||
|
||||
export const ANNOUNCEMENT_ITEMS: AnnouncementItem[] = [
|
||||
{
|
||||
id: "main-announcement",
|
||||
text: "Bu hafta yeni bileşenler eklendi!",
|
||||
actionLabel: "İncele ->",
|
||||
actionHref: "https://ui.poyrazavsever.com",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user