48 lines
1.6 KiB
TypeScript
48 lines
1.6 KiB
TypeScript
const placeholderOptions = [
|
|
{ label: 'Stock Fotage', link: '/' },
|
|
{ label: 'Motion Graphics', link: '/' },
|
|
{ label: 'All Stock Videos', link: '/' },
|
|
]
|
|
|
|
const commonProps = { link: '/', options: placeholderOptions }
|
|
|
|
export const ALL_NAV_ITEMS = [
|
|
{ title: 'Stock Video', ...commonProps },
|
|
{ title: 'Video Templates', ...commonProps },
|
|
{ title: 'Music', ...commonProps },
|
|
{ title: 'Sound Effects', ...commonProps },
|
|
{ title: 'Graphic Templates', ...commonProps },
|
|
{ title: 'Presentation Templates', ...commonProps },
|
|
{ title: 'Graphics', ...commonProps },
|
|
{ title: 'Photos', ...commonProps },
|
|
{ title: 'More', ...commonProps },
|
|
]
|
|
|
|
export const LESS_NAV_ITEMS = [
|
|
{ title: 'Stock Video', ...commonProps },
|
|
{ title: 'Video Templates', ...commonProps },
|
|
{ title: 'Music', ...commonProps },
|
|
{ title: 'Sound Effects', ...commonProps },
|
|
{ title: 'Graphic Templates', ...commonProps },
|
|
{ title: 'More', ...commonProps },
|
|
]
|
|
|
|
export const MOBILE_NAV_ITEMS = [
|
|
{ title: 'Stock Video', ...commonProps },
|
|
{ title: 'Video Templates', ...commonProps },
|
|
{ title: 'Music', ...commonProps },
|
|
{ title: 'Sound Effects', ...commonProps },
|
|
{ title: 'Graphic Templates', ...commonProps },
|
|
{ title: 'Presentation Templates', ...commonProps },
|
|
{ title: 'Graphics', ...commonProps },
|
|
{ title: 'Photos', ...commonProps },
|
|
{ title: 'Fonts', ...commonProps },
|
|
{ title: 'Web Templates', ...commonProps },
|
|
{ title: 'CMS Templates', ...commonProps },
|
|
{ title: 'Wordpress', ...commonProps },
|
|
{ title: '3D', ...commonProps },
|
|
{ title: 'Free Files', ...commonProps },
|
|
{ title: 'Extentions', ...commonProps },
|
|
{ title: 'Adds-on', ...commonProps },
|
|
]
|