feat: add header menu and search components with menu data for news page

This commit is contained in:
Ardeman
2025-02-01 01:19:01 +08:00
parent d2534bd94e
commit 89da497cc9
4 changed files with 66 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
export const MENU = [
{
title: 'Spotlight',
url: '/topic?category=spotlight',
},
{
title: 'Berita',
url: '/topic?category=berita',
},
{
title: 'Kasus',
url: '/topic?category=kasus',
},
{
title: 'Kajian',
url: '/topic?category=kajian',
},
{
title: 'Lifestyle',
url: '/topic?category=lifestyle',
},
{
title: 'Event',
url: '/topic?category=event',
},
{
title: 'Travel',
url: '/topic?category=travel',
},
]