26 lines
505 B
TypeScript
26 lines
505 B
TypeScript
import React from 'react';
|
|
import * as FaIcons from 'react-icons/fa';
|
|
import * as AiIcons from 'react-icons/ai';
|
|
import * as IoIcons from 'react-icons/io';
|
|
|
|
export const SidebarData = [
|
|
{
|
|
title: 'Home',
|
|
path: '/',
|
|
icon: <AiIcons.AiFillHome />,
|
|
cName: 'nav-text'
|
|
},
|
|
{
|
|
title: 'Flights',
|
|
path: '/flights',
|
|
icon: <IoIcons.IoIosPaper />,
|
|
cName: 'nav-text'
|
|
},
|
|
{
|
|
title: 'Seasons',
|
|
path: '/seasons',
|
|
icon: <FaIcons.FaCartPlus />,
|
|
cName: 'nav-text'
|
|
}
|
|
];
|