chore: sort components folders
This commit is contained in:
parent
a272c8d74f
commit
94c8aafe5b
|
|
@ -6,7 +6,8 @@
|
||||||
"dev": "next dev -p 3010",
|
"dev": "next dev -p 3010",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"deploy": "cp -r out/* /var/www/banatie.app/"
|
"deploy": "cp -r out/* /var/www/banatie.app/",
|
||||||
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "19.1.0",
|
"react": "19.1.0",
|
||||||
|
|
|
||||||
|
|
@ -11,15 +11,15 @@
|
||||||
* - Simplified Next Steps
|
* - Simplified Next Steps
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DocsLayout } from '@/components/docs/docs/DocsLayout';
|
import { DocsLayout } from '@/components/docs/layout/DocsLayout';
|
||||||
import { DocsSidebar } from '@/components/docs/docs/DocsSidebar';
|
import { DocsSidebar } from '@/components/docs/layout/DocsSidebar';
|
||||||
import { DocsTOC } from '@/components/docs/docs/DocsTOC';
|
import { DocsTOC } from '@/components/docs/layout/DocsTOC';
|
||||||
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
||||||
import { TipBox } from '@/components/docs/shared/TipBox';
|
import { TipBox } from '@/components/docs/shared/TipBox';
|
||||||
import { Table } from '@/components/docs/shared/Table';
|
import { Table } from '@/components/docs/shared/Table';
|
||||||
import { InteractiveAPIWidget } from '@/components/docs/docs/InteractiveAPIWidget';
|
|
||||||
import { Breadcrumb } from '@/components/docs/shared/Breadcrumb';
|
import { Breadcrumb } from '@/components/docs/shared/Breadcrumb';
|
||||||
import { CodeBlock } from '@/components/docs/shared/CodeBlock';
|
import { CodeBlock } from '@/components/docs/shared/CodeBlock';
|
||||||
|
import { InteractiveAPIWidget } from '@/components/docs/blocks/InteractiveAPIWidget';
|
||||||
|
|
||||||
const tocItems = [
|
const tocItems = [
|
||||||
{ id: 'overview', text: 'Overview', level: 2 },
|
{ id: 'overview', text: 'Overview', level: 2 },
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,9 @@
|
||||||
* - Simplified Next Steps
|
* - Simplified Next Steps
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DocsLayout } from '@/components/docs/docs/DocsLayout';
|
import { DocsLayout } from '@/components/docs/layout/DocsLayout';
|
||||||
import { DocsSidebar } from '@/components/docs/docs/DocsSidebar';
|
import { DocsSidebar } from '@/components/docs/layout/DocsSidebar';
|
||||||
import { DocsTOC } from '@/components/docs/docs/DocsTOC';
|
import { DocsTOC } from '@/components/docs/layout/DocsTOC';
|
||||||
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
||||||
import { TipBox } from '@/components/docs/shared/TipBox';
|
import { TipBox } from '@/components/docs/shared/TipBox';
|
||||||
import { Table } from '@/components/docs/shared/Table';
|
import { Table } from '@/components/docs/shared/Table';
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,9 @@
|
||||||
* - Clean, accessible design
|
* - Clean, accessible design
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DocsLayout } from '@/components/docs/docs/DocsLayout';
|
import { DocsLayout } from '@/components/docs/layout/DocsLayout';
|
||||||
import { DocsSidebar } from '@/components/docs/docs/DocsSidebar';
|
import { DocsSidebar } from '@/components/docs/layout/DocsSidebar';
|
||||||
import { DocsTOC } from '@/components/docs/docs/DocsTOC';
|
import { DocsTOC } from '@/components/docs/layout/DocsTOC';
|
||||||
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
import { SubsectionNav } from '@/components/shared/SubsectionNav';
|
||||||
import { TipBox } from '@/components/docs/shared/TipBox';
|
import { TipBox } from '@/components/docs/shared/TipBox';
|
||||||
import { CodeBlock } from '@/components/docs/shared/CodeBlock';
|
import { CodeBlock } from '@/components/docs/shared/CodeBlock';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue