Migrate to Vue.js #28

Merged
jakob.scheid merged 22 commits from feature/migrate-to-vue-js into main 2026-05-07 14:20:13 +02:00
Showing only changes of commit 5ba4485bf5 - Show all commits
+10 -1
View File
@@ -3,7 +3,7 @@ import Searchbar from '../features/search/components/Searchbar.vue'
</script> </script>
<template> <template>
<div class="content-background"> <div class="main-content">
<header class="global-header"> <header class="global-header">
<h1>Seekra</h1> <h1>Seekra</h1>
<span class="slogan"> <span class="slogan">
@@ -18,6 +18,15 @@ import Searchbar from '../features/search/components/Searchbar.vue'
</template> </template>
<style scoped> <style scoped>
.main-content {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
gap: 60px;
}
.global-header { .global-header {
text-align: center; text-align: center;
display: flex; display: flex;