Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
565aa48
first commit
SuperninjaXII Jun 27, 2025
a5dbeed
visual update
SuperninjaXII Jun 28, 2025
62e5491
added full docs functionality
SuperninjaXII Jun 28, 2025
4b5a366
added more improvements
SuperninjaXII Jun 28, 2025
bacb55a
added the navigational links
SuperninjaXII Jun 28, 2025
3a71c52
add some cinnamon markdowns
SuperninjaXII Jun 28, 2025
87ff637
deleting unused files
SuperninjaXII Jun 28, 2025
8bc57e3
this is a clean up
SuperninjaXII Jun 28, 2025
5cabd12
removed this
SuperninjaXII Jun 28, 2025
088f2be
i did a little of refactoring
SuperninjaXII Jun 28, 2025
cf8aa23
added the projects page
SuperninjaXII Jun 28, 2025
930a538
added better styling
SuperninjaXII Jun 28, 2025
27ccd8b
added more documentation and more ux updates
SuperninjaXII Jun 28, 2025
af3b34d
added images and more markdown styling
SuperninjaXII Jun 28, 2025
47a9ed4
[ImgBot] Optimize images
ImgBotApp Jun 28, 2025
14cf28c
added quotes for th markdown
SuperninjaXII Jun 28, 2025
1194f1a
removed the .md on the nav
SuperninjaXII Jun 28, 2025
a77e165
trying to fix
SuperninjaXII Jun 29, 2025
b23a20f
Merge pull request #2 from SuperninjaXII/imgbot
SuperninjaXII Jun 29, 2025
1ddb1b6
added mobile support
SuperninjaXII Jun 30, 2025
73c90ea
one last mobile support
SuperninjaXII Jun 30, 2025
0b163f9
changing aesthetic part one
SuperninjaXII Jul 2, 2025
5971015
[ImgBot] Optimize images
ImgBotApp Jul 2, 2025
60bc07c
added a copy for code blocks
SuperninjaXII Jul 2, 2025
7966136
just removed a few things
SuperninjaXII Jul 2, 2025
6a3b5e0
Update README.md
SuperninjaXII Jul 2, 2025
a1cfb7b
Merge pull request #3 from SuperninjaXII/imgbot
SuperninjaXII Jul 2, 2025
d01b261
Create static.yml
SuperninjaXII Jul 2, 2025
c54250d
added projects and community pages
SuperninjaXII Jul 2, 2025
cb19f63
user experience change to community
SuperninjaXII Jul 2, 2025
e6d9210
fix building and fix fontsize on mobile
SuperninjaXII Jul 2, 2025
a79d0be
90% datk mode addes
SuperninjaXII Jul 3, 2025
4c641b7
100% complete dark theme
SuperninjaXII Jul 3, 2025
7ef75a6
MADE A FEW CHANGES TO DOCUMENTATION
SuperninjaXII Jul 3, 2025
88a0d1c
another major rework
SuperninjaXII Aug 9, 2025
b6247e0
change branch in deployment action
SuperninjaXII Aug 9, 2025
7a7e7c7
again this time npm
SuperninjaXII Aug 9, 2025
6361a1b
back and forth
SuperninjaXII Aug 9, 2025
19f5a50
default deploment yaml
SuperninjaXII Aug 9, 2025
6b3380e
added pnpm install
SuperninjaXII Aug 9, 2025
1faaa3d
changed runner
SuperninjaXII Aug 9, 2025
f10f1e8
test without package manger
SuperninjaXII Aug 9, 2025
05244f0
added bash reloading
SuperninjaXII Aug 9, 2025
79f1dbf
changed approach
SuperninjaXII Aug 9, 2025
2e541ba
added pnpm action
SuperninjaXII Aug 9, 2025
ad5a06c
changed to true dist dir
SuperninjaXII Aug 9, 2025
e22fac4
changed the base to repo fot github pages
SuperninjaXII Aug 9, 2025
cac9156
changed tagline
SuperninjaXII Aug 9, 2025
d2e74b2
added the new README.md
SuperninjaXII Aug 9, 2025
647c547
added github documentation link
SuperninjaXII Aug 9, 2025
2339243
Update README.md
SuperninjaXII Aug 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Sample workflow for building and deploying a VitePress site to GitHub Pages
#
name: Deploy VitePress site to Pages

on:
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
# using the `master` branch as the default branch.
push:
branches: [master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
# - uses: pnpm/action-setup@v3 # Uncomment this block if you're using pnpm
# with:
# version: 9 # Not needed if you've set "packageManager" in package.json
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup Pages
uses: actions/configure-pages@v4

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Install dependencies
run: pnpm install # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: pnpm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: .vitepress/dist

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
_site
#Gemfile
Gemfile.lock
.idea
.idea
.obsidian
./node_modules
/node_modules
275 changes: 275 additions & 0 deletions .vitepress/cache/deps/@theme_index.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .vitepress/cache/deps/@theme_index.js.map

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions .vitepress/cache/deps/_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"hash": "7f3d6368",
"configHash": "9184225d",
"lockfileHash": "411fa69e",
"browserHash": "d71d7801",
"optimized": {
"vue": {
"src": "../../../node_modules/.pnpm/vue@3.5.18/node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "dc1eb8ab",
"needsInterop": false
},
"vitepress > @vue/devtools-api": {
"src": "../../../node_modules/.pnpm/@vue+devtools-api@7.7.7/node_modules/@vue/devtools-api/dist/index.js",
"file": "vitepress___@vue_devtools-api.js",
"fileHash": "7726c54b",
"needsInterop": false
},
"vitepress > @vueuse/core": {
"src": "../../../node_modules/.pnpm/@vueuse+core@12.8.2/node_modules/@vueuse/core/index.mjs",
"file": "vitepress___@vueuse_core.js",
"fileHash": "1c361cf5",
"needsInterop": false
},
"@theme/index": {
"src": "../../../node_modules/.pnpm/vitepress@1.6.4_@algolia+client-search@5.35.0_postcss@8.5.6_search-insights@2.17.3/node_modules/vitepress/dist/client/theme-default/index.js",
"file": "@theme_index.js",
"fileHash": "6ecca243",
"needsInterop": false
}
},
"chunks": {
"chunk-Z343HRCW": {
"file": "chunk-Z343HRCW.js"
},
"chunk-FZQEDHRP": {
"file": "chunk-FZQEDHRP.js"
}
}
}
Loading