first commit

This commit is contained in:
2025-05-23 15:36:39 +07:00
commit 692ffdf2f1
129 changed files with 12232 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<template>
<LayoutFullLogoDark />
</template>

View File

@@ -0,0 +1,10 @@
<script setup lang="ts">
import Logoimg from "/images/logos/logo.svg";
</script>
<template>
<div class="logo">
<NuxtLink to="/">
<img :src="Logoimg" alt="home" />
</NuxtLink>
</div>
</template>