add landing

This commit is contained in:
Emily
2024-06-02 02:46:47 +02:00
parent f8ab046b8a
commit d7bff30808
104 changed files with 73142 additions and 0 deletions

26
landing/app.vue Normal file
View File

@@ -0,0 +1,26 @@
<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>