diff --git a/package-lock.json b/package-lock.json
index 909069b..d3642b9 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "adventurers-guild",
- "version": "0.0.1",
+ "version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "adventurers-guild",
- "version": "0.0.1",
+ "version": "0.1.0",
"dependencies": {
"@vueuse/components": "^9.13.0",
"sass": "^1.59.3",
diff --git a/public/img/icons/cog.svg b/public/img/icons/cog.svg
new file mode 100644
index 0000000..17e8506
--- /dev/null
+++ b/public/img/icons/cog.svg
@@ -0,0 +1,40 @@
+
+
+
\ No newline at end of file
diff --git a/public/img/icons/discord.svg b/public/img/icons/discord.svg
new file mode 100644
index 0000000..9d7796b
--- /dev/null
+++ b/public/img/icons/discord.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/img/icons/github.svg b/public/img/icons/github.svg
new file mode 100644
index 0000000..ec41bdd
--- /dev/null
+++ b/public/img/icons/github.svg
@@ -0,0 +1,5 @@
+
+
\ No newline at end of file
diff --git a/src/App.vue b/src/App.vue
index b444386..a7aff93 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -4,9 +4,10 @@ import {RouterLink, RouterView} from 'vue-router'
diff --git a/src/components/ChangelogComponent.vue b/src/components/ChangelogComponent.vue
new file mode 100644
index 0000000..25649c7
--- /dev/null
+++ b/src/components/ChangelogComponent.vue
@@ -0,0 +1,76 @@
+
+
+
Changelog
+
+
Version {{ release.name }}
+
{{ release.body }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/router/index.ts b/src/router/index.ts
index 74e2051..269a6f6 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -18,6 +18,11 @@ const router = createRouter({
path: '/adventurers',
name: 'adventurers',
component: () => import('../views/AdventurerView.vue')
+ },
+ {
+ path: '/technical',
+ name: 'technical',
+ component: () => import('../views/TechnicalView.vue')
}
]
})
diff --git a/src/views/TechnicalView.vue b/src/views/TechnicalView.vue
new file mode 100644
index 0000000..780d4ce
--- /dev/null
+++ b/src/views/TechnicalView.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
\ No newline at end of file