-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Page Not Found | ||
|
||
--- | ||
|
||
# 404 - Page Not Found | ||
|
||
The page you are looking for does not exist. Please check the URL or go back to the [home page](/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Example | ||
|
||
--- | ||
|
||
# Stone Packaging Example | ||
|
||
Here's an example of how to use Stone Packaging... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Getting Started | ||
|
||
--- | ||
|
||
# Getting Started with Stone Packaging | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Introduction | ||
--- | ||
|
||
# Stone Packaging | ||
|
||
This is the main page of Stone Packaging documentation. | ||
|
||
Here's an example of how to use Stone Packaging... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "stone-packaging", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vocs dev", | ||
"build": "vocs build" | ||
}, | ||
"dependencies": { | ||
"vocs": "^1.0.0-alpha.61", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^4.9.5", | ||
"@types/react": "^18.0.28", | ||
"@types/react-dom": "^18.0.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"compilerOptions": { | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"target": "es2022", | ||
"allowJs": true, | ||
"resolveJsonModule": true, | ||
"moduleDetection": "force", | ||
"isolatedModules": true, | ||
"strict": true, | ||
"noUncheckedIndexedAccess": true, | ||
"moduleResolution": "node", | ||
"module": "esnext", | ||
"noEmit": true, | ||
"lib": ["es2022", "dom", "dom.iterable"], | ||
"types": ["vocs"] | ||
}, | ||
"include": ["vocs.config.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { defineConfig } from 'vocs' | ||
|
||
export default defineConfig({ | ||
title: 'Stone Packaging', | ||
rootDir: 'docs', | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Introduction', | ||
link: '/', | ||
}, | ||
{ | ||
text: 'Getting Started', | ||
link: '/getting-started', | ||
}, | ||
{ | ||
text: 'Example', | ||
link: '/example', | ||
}, | ||
{ | ||
text: 'Stone Packaging Resources', | ||
link: '/resourcers', | ||
}, | ||
], | ||
}) |