mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
27 lines
461 B
Vue
27 lines
461 B
Vue
<script lang="ts" setup>
|
|
|
|
|
|
useServerSeoMeta({
|
|
title: 'Litlyx',
|
|
ogTitle: 'Litlyx',
|
|
description: 'One line code analytics solution',
|
|
ogDescription: 'One line code analytics solution',
|
|
author: 'Litlyx',
|
|
ogImage: 'https://litlyx.com/ogimage.jpg',
|
|
ogType: 'website',
|
|
ogUrl: 'https://litlyx.com'
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="w-dvw h-dvh bg-[#151517]">
|
|
<NuxtLayout>
|
|
<NuxtPage></NuxtPage>
|
|
</NuxtLayout>
|
|
</div>
|
|
|
|
</template>
|