add: general structure for landingpage design
This commit is contained in:
parent
e591c276f5
commit
dd707bbf62
8 changed files with 85 additions and 10 deletions
24
app/pages/landingpage.vue
Normal file
24
app/pages/landingpage.vue
Normal file
|
@ -0,0 +1,24 @@
|
|||
<template>
|
||||
<section class="Home flex-col content full">
|
||||
<div class="home-hero">
|
||||
<div class="text">
|
||||
<h1>
|
||||
Du zahlst zuviel fürs Papier?
|
||||
</h1>
|
||||
<Button class="cta">Preise vergleichen</Button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="home-text padding ">
|
||||
<p>
|
||||
Mit <strong>ProPapier</strong> vergleichst du schnell & unkompliziert Preise für Klo-, Küchen- und Haushaltspapier und sparst so bares Geld.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import Button from "~/components/Pp/Button.vue";
|
||||
definePageMeta({
|
||||
layout: 'landingpage'
|
||||
})
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue