Created Layout & Responsive Header Component

This commit is contained in:
aftabrehan
2024-02-01 20:28:42 +05:00
parent 9ac97c7f9a
commit bc7cad7e3b
21 changed files with 413 additions and 30 deletions

28
constants/nav-items.ts Normal file
View File

@@ -0,0 +1,28 @@
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 },
]