generated from Seekra/repository-template
Add footer #27 #41
+16
-3
@@ -5,8 +5,21 @@ import Footer from './features/footer/components/Footer.vue';
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Navbar />
|
<Navbar />
|
||||||
|
|
||||||
<router-view />
|
<div class="main-content">
|
||||||
|
<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>
|
||||||
+10
-21
@@ -3,30 +3,19 @@ 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">
|
Built to search.
|
||||||
Built to search.
|
</span>
|
||||||
</span>
|
</header>
|
||||||
</header>
|
|
||||||
|
<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;
|
||||||
|
|||||||
Reference in New Issue
Block a user