feat: add ReferencesSection component and integrate AnnouncementBar with news updates

This commit is contained in:
Poyraz Avsever
2026-03-10 10:39:15 +03:00
parent 449f22bf0e
commit bef1cbc901
8 changed files with 147 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
export const HOME_NEWS = [
{
id: "news-performance",
category: "Technology",
title: "Next.js 16 Released with Major Performance Improvements",
date: "Mar 6, 2026",
image: "/news/performance.svg",
href: "/blog",
},
{
id: "news-design",
category: "Design",
title: "Minimalism in Modern UI: Less Is Truly More",
date: "Mar 5, 2026",
image: "/news/design.svg",
href: "/blog",
},
{
id: "news-launch",
category: "Open Source",
title: "Poyraz UI v1.0 Launched - A Minimal React Component Library",
date: "Mar 4, 2026",
href: "/projects",
},
] as const;