cosette/components/hero.vue

9 lines
469 B
Vue
Raw Permalink Normal View History

2022-08-11 09:57:51 +02:00
<template>
<section class="w-full mx-auto bg-nordic-gray-light flex pt-12 md:pt-0 md:items-center bg-cover bg-right" style="max-width:1600px; height: 32rem; background-image: url('https://picsum.photos/id/1072/3872/2592?grayscale')">
<div class="container mx-auto">
<div class="flex flex-col w-full lg:w-1/2 justify-center items-start px-6 tracking-wide">
2022-08-16 00:57:18 +02:00
<h1 class="text-white font-extrabold text-4xl my-4">Cosette</h1>
2022-08-11 09:57:51 +02:00
</div>
</div>
</section>
</template>