Skip to content

Commit b21a48e

Browse files
committed
Updates dwt theme
Signed-off-by: Sebastian Kawelke <sebastian.kawelke@l3montree.com>
1 parent 01f14c0 commit b21a48e

13 files changed

Lines changed: 7119 additions & 18903 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,7 @@ image.tar
4141
# Sentry Config File
4242
.env.sentry-build-plugin
4343
search-data.json
44+
search-data-en.json
45+
search-data-de.json
4446
pageMap.ts
4547
sitemap-0.xml

abbreviations.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SCA:
2+
value: "Software Composition Analysis"
3+
type: glossary
4+
variants: []
5+
SAST:
6+
value: "Static Application Security Testing"
7+
type: glossary
8+
variants: []
9+
IaC:
10+
value: "Infrastructure as Code"
11+
type: glossary
12+
variants: []

abkuerzungen.yaml

Whitespace-only changes.

glossar.yaml

Whitespace-only changes.

glossary.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
export const glossary = {};
1+
export const glossary = {
2+
"SCA": "Software Composition Analysis",
3+
"SAST": "Static Application Security Testing",
4+
"IaC": "Infrastructure as Code"
5+
};

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/dev/types/routes.d.ts";
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

next.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
1616

1717

1818
const config = withMarkdownWebBook({
19+
env: {
20+
DWT_DEFAULT_LOCALE: 'en',
21+
},
1922
trailingSlash: true,
2023
compiler: {
2124
removeConsole: false,

package-lock.json

Lines changed: 7076 additions & 18879 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"homepage": "https://github.com/l3montree-dev/devguard-documentation",
3636
"dependencies": {
37-
"@document-writing-tools/kernux-theme": "2.0.0-rc.12",
37+
"@document-writing-tools/kernux-theme": "2.0.0",
3838
"@ltonetwork/http-message-signatures": "^0.1.12",
3939
"@radix-ui/react-dialog": "^1.1.15",
4040
"@radix-ui/react-separator": "^1.1.8",
@@ -45,12 +45,13 @@
4545
"@theguild/remark-mermaid": "^0.3.0",
4646
"class-variance-authority": "^0.7.1",
4747
"clsx": "^2.1.1",
48+
"date-fns": "^4.1.0",
4849
"eslint-config-prettier": "^10.1.8",
4950
"flexsearch": "^0.8.212",
5051
"framer-motion": "^12.38.0",
51-
"date-fns": "^4.1.0",
5252
"gsap": "^3.14.2",
5353
"lodash": "^4.17.23",
54+
"lucide-react": "1.7.0",
5455
"mathjs": "^15.1.1",
5556
"motion": "^12.38.0",
5657
"next": "^16.1.7",
@@ -61,13 +62,13 @@
6162
"react-dom": "^19.2.4",
6263
"recharts": "^3.8.0",
6364
"sharp": "^0.34.5",
64-
"swagger-ui-react": "^5.32.0",
65+
"swagger-ui-react": "^5.32.2",
6566
"swr": "^2.4.1",
6667
"tailwind-merge": "^3.5.0",
6768
"tw-animate-css": "^1.4.0"
6869
},
6970
"devDependencies": {
70-
"@tailwindcss/postcss": "^4.2.1",
71+
"@tailwindcss/postcss": "^4.2.2",
7172
"@types/lodash": "^4.17.24",
7273
"@types/node": "25.5.0",
7374
"@types/react": "^19.2.14",
@@ -77,11 +78,11 @@
7778
"eslint-config-next": "^16.1.7",
7879
"eslint-config-prettier": "^10.1.8",
7980
"eslint-plugin-prettier": "^5.5.5",
81+
"gray-matter": "^4.0.3",
8082
"postcss": "^8.5.8",
8183
"prettier-plugin-tailwindcss": "^0.7.2",
8284
"shadcn": "^4.0.8",
83-
"tailwindcss": "^4.2.1",
84-
"typescript": "^5.9.3",
85-
"gray-matter": "^4.0.3"
85+
"tailwindcss": "^4.2.2",
86+
"typescript": "^5.9.3"
8687
}
8788
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
'authenticate-with-api': { title: 'Authenticate with API' },
3+
'manage-assets-via-api': { title: 'Manage Assets via API' },
4+
'query-vulnerabilities': { title: 'Query Vulnerabilities' },
5+
'upload-scan-results': { title: 'Upload Scan Results' },
6+
'webhooks-api': { title: 'Webhooks API' },
7+
}

0 commit comments

Comments
 (0)