feat(layout): load announcement bar content from site settings

This commit is contained in:
Poyraz Avsever
2026-03-11 11:03:26 +03:00
parent be43edc6a6
commit 61c6717313
2 changed files with 40 additions and 18 deletions
+15
View File
@@ -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",
},
];