2023-04-09 00:24:42 -05:00
|
|
|
import { DocsStructure } from '@/app/types/types';
|
|
|
|
|
|
2023-04-09 14:50:50 -05:00
|
|
|
export const versionOne: DocsStructure = {
|
|
|
|
|
version: 'version_001',
|
2023-04-12 11:18:38 -05:00
|
|
|
docs: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Introduction',
|
|
|
|
|
folder: 'introduction',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
children: [],
|
|
|
|
|
},
|
|
|
|
|
],
|
2023-04-09 14:50:50 -05:00
|
|
|
};
|