diff --git a/src/assets/scss/main-styles.scss b/src/assets/scss/main-styles.scss
index 97852b7..53366ea 100644
--- a/src/assets/scss/main-styles.scss
+++ b/src/assets/scss/main-styles.scss
@@ -256,30 +256,30 @@ body {
display: none;
}
-.animate_content {
- animation: animate 3s ease;
-}
+// .animate_content {
+// animation: animate 3s ease;
+// }
-@keyframes animate {
- 10% {
- transform: scale(1, 0.004);
- }
- 35% {
- transform: scale(0.001, 0.004);
- opacity: 1;
- }
- 50% {
- transform: scale(0.001, 0.004);
- opacity: 0;
- }
- 85% {
- transform: scale(1, 0.004);
- opacity: 1;
- }
- 100% {
- transform: scale(1, 1);
- }
-}
+// @keyframes animate {
+// 10% {
+// transform: scale(1, 0.004);
+// }
+// 35% {
+// transform: scale(0.001, 0.004);
+// opacity: 1;
+// }
+// 50% {
+// transform: scale(0.001, 0.004);
+// opacity: 0;
+// }
+// 85% {
+// transform: scale(1, 0.004);
+// opacity: 1;
+// }
+// 100% {
+// transform: scale(1, 1);
+// }
+// }
.page_description {
font-weight: 300;
diff --git a/src/components/simple-search/simple-search-component.ts b/src/components/simple-search/simple-search-component.ts
new file mode 100644
index 0000000..9f09847
--- /dev/null
+++ b/src/components/simple-search/simple-search-component.ts
@@ -0,0 +1,12 @@
+import { Options, Vue } from "vue-class-component";
+
+@Options({
+ name: "SimpleSearchComponent",
+})
+export default class SimpleSearchComponent extends Vue {
+ public display = "";
+
+ search(): void {
+ this.$router.push({ name: "Search", params: { display: this.display } });
+ }
+}
diff --git a/src/components/simple-search/simple-search-component.vue b/src/components/simple-search/simple-search-component.vue
new file mode 100644
index 0000000..9b7cf52
--- /dev/null
+++ b/src/components/simple-search/simple-search-component.vue
@@ -0,0 +1,77 @@
+
+