-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
30 lines (29 loc) · 1002 Bytes
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { FaCreditCard, FaBook, FaBriefcase } from 'react-icons/fa';
import React from 'react';
const sublinks = [
{
page: 'products',
links: [
{ label: 'payment', icon: <FaCreditCard />, url: '/products' },
{ label: 'terminal', icon: <FaCreditCard />, url: '/products' },
{ label: 'connect', icon: <FaCreditCard />, url: '/products' },
],
},
{
page: 'developers',
links: [
{ label: 'plugins', icon: <FaBook />, url: '/products' },
{ label: 'libraries', icon: <FaBook />, url: '/products' },
{ label: 'help', icon: <FaBook />, url: '/products' },
{ label: 'billing', icon: <FaBook />, url: '/products' },
],
},
{
page: 'company',
links: [
{ label: 'about', icon: <FaBriefcase />, url: '/products' },
{ label: 'customers', icon: <FaBriefcase />, url: '/products' },
],
},
];
export default sublinks;