Skip to content

Commit 443f24d

Browse files
committed
minor updates to License, fixed some spelling, and make the Plume custom components with configuration for better use on the home-page and easier re-use
1 parent 196c2db commit 443f24d

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<script setup lang="ts">
22
import Contributors from './Contributors.vue';
3+
4+
defineProps<{
5+
repo: string
6+
}>()
37
</script>
48

59
<template>
610
<VPHomeBox>
7-
<Contributors repo="SpechtLabs/spechtlabs.github.io" />
11+
<Contributors :repo="repo" />
812
</VPHomeBox>
913
</template>
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<script setup lang="ts">
22
import Projects from './Projects.vue';
3+
4+
defineProps<{
5+
org: string
6+
}>()
37
</script>
48

59
<template>
610
<VPHomeBox>
7-
<Projects org="SpechtLabs" />
11+
<Projects :org="org" />
812
</VPHomeBox>
913
</template>

docs/.vuepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineUserConfig({
2626
theme: plumeTheme({
2727
// hostname: 'https://your_site_url',
2828

29-
docsRepo: 'https://github.com/spechtlbas/spechtlabs.github.io',
29+
docsRepo: 'https://github.com/SpechtLabs/spechtlabs.github.io',
3030
docsDir: 'docs',
3131
docsBranch: 'main',
3232

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ config:
2020
link: /blog/
2121

2222
- type: VPProjectsCustom
23+
org: SpechtLabs
2324
- type: VPContributorsCustom
25+
repo: SpechtLabs/spechtlabs.github.io
2426
---
2527

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "module",
44
"version": "1.0.0",
55
"description": "SpechtLabs is dedicated to building robust, scalable, and high-performance software.",
6-
"author": "Cedric Kienzler <github@cedric-kienzler.de>",
7-
"license": "MIT",
6+
"author": "Cedric Kienzler <cedric@specht-labs.de>",
7+
"license": "Apache-2.0",
88
"engines": {
99
"node": "^18.20.0 || >=20.0.0"
1010
},

0 commit comments

Comments
 (0)