2023-04-09 00:24:42 -05:00
|
|
|
import { DocsStructure } from '@/app/types/types';
|
|
|
|
|
|
|
|
|
|
export const versionTwo: DocsStructure[] = [
|
|
|
|
|
{
|
|
|
|
|
title: 'Introduction',
|
|
|
|
|
folder: 'introduction',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
2023-04-09 12:58:14 -05:00
|
|
|
children: [],
|
2023-04-09 00:24:42 -05:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Authentication',
|
|
|
|
|
folder: 'authentication',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
2023-04-09 12:58:14 -05:00
|
|
|
children: [],
|
2023-04-09 00:24:42 -05:00
|
|
|
},
|
|
|
|
|
];
|