import type React from 'react';
import {
FiLayers,
FiLayout,
FiLink2,
FiRss,
FiSmartphone,
} from 'react-icons/fi';
import { PageLayout } from '@components/templates/PageLayout';
import { Channels } from './Channels';
import { Connection } from './Connection';
import { Device } from './Device';
import { Interface } from './Interface';
import { Radio } from './Radio';
export const Settings = (): JSX.Element => {
return (
,
},
{
title: 'Device',
description: 'Device settings, such as device name and wifi settings',
icon: ,
},
{
title: 'Radio',
description: 'Adjust radio power and frequency settings',
icon: ,
},
{
title: 'Interface',
description: 'Change language and other UI settings',
icon: ,
},
{
title: 'Channels',
description: 'Manage channels',
icon: ,
},
]}
panels={[
,
,
,
,
,
]}
/>
);
};