propapier/app/pages/index.vue
webfussel f60719fa9e add: lp and navigation
Added... a lot of stuff
2025-05-22 09:59:27 +02:00

25 lines
No EOL
642 B
Vue

<template>
<section class="Home flex-col content full">
<div class="home-hero">
<div class="text">
<h1>
Du zahlst zuviel fürs Papier?
</h1>
<NuxtLink to="/rechner">
<PpButton class="cta">Preise vergleichen</PpButton>
</NuxtLink>
</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">
definePageMeta({
layout: 'landingpage'
})
</script>