32 lines
650 B
TypeScript
32 lines
650 B
TypeScript
const sections = [
|
|
{
|
|
title: 'Product',
|
|
links: [
|
|
{ name: 'Overview', href: '#' },
|
|
{ name: 'Pricing', href: '#' },
|
|
{ name: 'Marketplace', href: '#' },
|
|
{ name: 'Features', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Company',
|
|
links: [
|
|
{ name: 'About', href: '#' },
|
|
{ name: 'Team', href: '#' },
|
|
{ name: 'Blog', href: '#' },
|
|
{ name: 'Careers', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Resources',
|
|
links: [
|
|
{ name: 'Help', href: '#' },
|
|
{ name: 'Sales', href: '#' },
|
|
{ name: 'Advertise', href: '#' },
|
|
{ name: 'Privacy', href: '#' },
|
|
],
|
|
},
|
|
];
|
|
|
|
export { sections };
|