mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
new selfhosted version
This commit is contained in:
10
dashboard/components/PageHeader.vue
Normal file
10
dashboard/components/PageHeader.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script lang="ts" setup>
|
||||
defineProps<{ title?: string, description?: string }>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="space-y-1 poppins">
|
||||
<h1 class="text-[16px] font-semibold lg:text-lg"> {{ title }} </h1>
|
||||
<p class="text-gray-500 text-sm lg:text-md dark:text-gray-400"> {{ description }} </p>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user