Add footer #27 #41

Merged
jakob.scheid merged 7 commits from feature/footer into main 2026-05-08 18:58:16 +02:00
2 changed files with 26 additions and 24 deletions
Showing only changes of commit 6e7e512a9b - Show all commits
+13
View File
@@ -6,7 +6,20 @@ import Footer from './features/footer/components/Footer.vue';
<template> <template>
<Navbar /> <Navbar />
<div class="main-content">
<router-view /> <router-view />
</div>
<Footer /> <Footer />
</template> </template>
<style scoped>
.main-content {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
gap: 60px;
flex-grow: 1;
}
</style>
-11
View File
@@ -3,7 +3,6 @@ import Searchbar from '../features/search/components/Searchbar.vue'
</script> </script>
<template> <template>
<div class="main-content">
<header class="global-header"> <header class="global-header">
<h1>Seekra</h1> <h1>Seekra</h1>
<span class="slogan"> <span class="slogan">
@@ -14,19 +13,9 @@ import Searchbar from '../features/search/components/Searchbar.vue'
<form id="search-form"> <form id="search-form">
<Searchbar /> <Searchbar />
</form> </form>
</div>
</template> </template>
<style scoped> <style scoped>
.main-content {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
gap: 60px;
flex-grow: 1;
}
.global-header { .global-header {
text-align: center; text-align: center;
display: flex; display: flex;