mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
29 lines
593 B
Vue
29 lines
593 B
Vue
<script lang="ts" setup>
|
|
|
|
|
|
definePageMeta({ layout: 'header' });
|
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="tutto-poppins flex flex-col gap-3 px-2 lg:px-96 mt-20 text-[1.2rem] leading-[2rem]">
|
|
|
|
<div class="flex justify-center flex-col items-center">
|
|
<div class="font-bold text-[2rem]"> Contact us </div>
|
|
<div class="font-bold mb-1 mt-4 text-accent">
|
|
<a href="mailto:help@litlyx.com">help@litlyx.com </a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang=scss>
|
|
.tutto-poppins * {
|
|
font-family: "Poppins";
|
|
}
|
|
</style> |