-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite Website using Astro+Starlight
- Loading branch information
1 parent
5fb9b8f
commit 34ea809
Showing
101 changed files
with
5,669 additions
and
11,448 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,33 +1,24 @@ | ||
node_modules | ||
*.iml | ||
.idea | ||
*.log* | ||
.nuxt | ||
.vscode | ||
.DS_Store | ||
coverage | ||
dist | ||
sw.* | ||
.env | ||
.output | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
# build output | ||
dist/ | ||
# generated types | ||
.astro/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
._* | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
.vscode/ | ||
.cache/ | ||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store | ||
|
||
# Local Netlify folder | ||
.netlify |
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,4 @@ | ||
{ | ||
"recommendations": ["astro-build.astro-vscode"], | ||
"unwantedRecommendations": [] | ||
} |
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,11 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "./node_modules/.bin/astro dev", | ||
"name": "Development server", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
} | ||
] | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,98 @@ | ||
import { defineConfig } from "astro/config"; | ||
import embeds from "astro-embed/integration"; | ||
import starlight from "@astrojs/starlight"; | ||
import starlightImageZoom from "starlight-image-zoom"; | ||
import starlightBlog from "starlight-blog"; | ||
import starlightLinksValidator from "starlight-links-validator"; | ||
import tailwind from "@astrojs/tailwind"; | ||
import icon from "astro-icon"; | ||
|
||
export default defineConfig({ | ||
site: "https://chefkissinc.github.io", | ||
integrations: [ | ||
embeds({ | ||
services: { | ||
LinkPreview: false, | ||
}, | ||
}), | ||
starlight({ | ||
plugins: [ | ||
starlightImageZoom(), | ||
starlightBlog({ | ||
title: "Newsroom", | ||
prefix: "newsroom", | ||
authors: { | ||
visual: { | ||
name: "Visual Ehrmanntraut", | ||
title: "CEO", | ||
picture: "/Avatars/Visual.png", | ||
url: "https://github.com/VisualEhrmanntraut", | ||
}, | ||
}, | ||
}), | ||
starlightLinksValidator(), | ||
], | ||
title: "ChefKiss", | ||
logo: { | ||
src: "~/assets/Logo.svg", | ||
}, | ||
tableOfContents: { | ||
minHeadingLevel: 2, | ||
maxHeadingLevel: 4, | ||
}, | ||
customCss: ["~/base.css"], | ||
components: { | ||
Head: "~/components/starlight/Head.astro", | ||
MarkdownContent: "~/components/starlight/MarkdownContent.astro", | ||
}, | ||
social: { | ||
github: "https://github.com/ChefKissInc", | ||
telegram: "https://t.me/+Bx3MO9Hq8whhNzk9", | ||
}, | ||
sidebar: [ | ||
{ | ||
label: "Installation", | ||
items: [ | ||
"guides/hackintosh", | ||
"guides/hackintosh/compatibility", | ||
{ | ||
label: "Gathering Files", | ||
items: [ | ||
"guides/hackintosh/gathering-files", | ||
"guides/hackintosh/gathering-files/opencore", | ||
{ | ||
label: "Installer", | ||
items: [ | ||
"guides/hackintosh/gathering-files/installer", | ||
"guides/hackintosh/gathering-files/installer/online", | ||
], | ||
}, | ||
"guides/hackintosh/gathering-files/acpi", | ||
"guides/hackintosh/gathering-files/kexts", | ||
], | ||
}, | ||
{ | ||
label: "Configuration", | ||
badge: "TODO", | ||
items: [ | ||
{ | ||
label: "Dortania guide (temporary)", | ||
link: "https://dortania.github.io/OpenCore-Install-Guide/AMD/zen.html", | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
label: "Troubleshooting", | ||
badge: "TODO", | ||
items: [], | ||
}, | ||
], | ||
}), | ||
tailwind({ | ||
applyBaseStyles: false, | ||
}), | ||
icon(), | ||
], | ||
}); |
Oops, something went wrong.