All checks were successful
Build and Deploy / Deploy (push) Successful in 1m28s
17 lines
927 B
Vue
17 lines
927 B
Vue
<template>
|
|
<div class="w-screen h-screen bg-neutral-950 flex flex-col items-center px-5 pb-12 overflow-auto">
|
|
<img class="w-48 mt-20" src="assets/Hun_Shin_Logo.svg" width="100%" height="100%" />
|
|
<h1 class="font-bold text-3xl md:text-4xl lg:text-5xl text-white text-center mt-10 md:mt-20">HIER KOMT DE NIEUWE WEBSITE <br> VAN <span class="text-[#f8cc15]">HUN SHIN TANG SOO DO</span></h1>
|
|
<h2 class="font-bold text-xl md:text-2xl lg:text-3xl text-white text-center mt-20 md:mt-32"><span class="text-[#f8cc15]">TRAIN DE EERSTE</span> 8 <span class="text-[#f8cc15]">LESSEN</span> GRATIS <br> <span class="text-[#f8cc15]">Dinsdag - vrijdag:</span> 19:30 - 20:30 <span class="text-[#f8cc15]">Sniepweg 13F</span> - Waddinxveen</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
useSeoMeta({
|
|
title: 'Hun Shin',
|
|
ogTitle: 'Hun Shin',
|
|
description: 'Hun Shin tang soo do',
|
|
ogDescription: 'Hun Shin tang soo do',
|
|
})
|
|
</script>
|