26 lines
626 B
TypeScript
26 lines
626 B
TypeScript
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;
|