diff --git a/src/App.vue b/src/App.vue
index 300d95d..d9d31f2 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,14 +1,11 @@
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/About.vue b/src/components/icons/About.vue
new file mode 100644
index 0000000..796d172
--- /dev/null
+++ b/src/components/icons/About.vue
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/Contact.vue b/src/components/icons/Contact.vue
new file mode 100644
index 0000000..5d1cc25
--- /dev/null
+++ b/src/components/icons/Contact.vue
@@ -0,0 +1,31 @@
+
+
+
+
+
diff --git a/src/components/icons/Hamburger.vue b/src/components/icons/Hamburger.vue
new file mode 100644
index 0000000..30c8b0a
--- /dev/null
+++ b/src/components/icons/Hamburger.vue
@@ -0,0 +1,32 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/Help.vue b/src/components/icons/Help.vue
index 9b4dd10..0c90808 100644
--- a/src/components/icons/Help.vue
+++ b/src/components/icons/Help.vue
@@ -1,8 +1,27 @@
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/src/components/icons/MagnifyingGlass.vue b/src/components/icons/MagnifyingGlass.vue
new file mode 100644
index 0000000..a09810d
--- /dev/null
+++ b/src/components/icons/MagnifyingGlass.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
diff --git a/src/components/icons/TwitterFull.vue b/src/components/icons/TwitterFull.vue
new file mode 100644
index 0000000..88a76f4
--- /dev/null
+++ b/src/components/icons/TwitterFull.vue
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/YoutubeFull.vue b/src/components/icons/YoutubeFull.vue
new file mode 100644
index 0000000..7888625
--- /dev/null
+++ b/src/components/icons/YoutubeFull.vue
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/index.js b/src/components/index.js
index c5a7a4a..077a71e 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -15,6 +15,9 @@ import Breadcrumb from './BreadcrumbTrail.vue'
import IconCard from './IconCard.vue'
import ContentTabCard from './ContentTabCard.vue'
import ContentOverviewCard from './ContentOverviewCard.vue'
+import EventCard from './EventCard.vue'
+import SparcHeader from './SparcHeader.vue'
+
export default {
install(app) {
@@ -27,11 +30,12 @@ export default {
app.component('DropdownMultiselect', DropdownMultiselect);
app.component('Pagination', Pagination);
app.component('PaginationMenu', PaginationMenu);
- app.component('MultiSelect',MultiSelect);
+ app.component('EventCard',EventCard);
app.component('ContentOverviewCard', ContentOverviewCard);
+ app.component('SparcHeader',SparcHeader);
+ app.component('MultiSelect',MultiSelect);
app.component('Breadcrumb', Breadcrumb);
app.component('IconCard', IconCard);
app.component('ContentTabCard', ContentTabCard);
-
},
};
diff --git a/src/main.js b/src/main.js
index 17f7dfc..6a2d864 100644
--- a/src/main.js
+++ b/src/main.js
@@ -6,7 +6,12 @@ import {createRouter, createWebHashHistory} from 'vue-router'
import App from './App.vue'
const app = createApp(App)
-const routes = []
+const routes = [
+ {
+ name: "index",
+ path:"/index",
+}
+]
const router = createRouter({history:createWebHashHistory(), routes})
app.use(router)