Files
gastro-bot/src/widgets/footer/lib/data.ts
Samandar Turgunboyev a5b46a9f26 init create-fias
2025-12-12 11:21:30 +05:00

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 };